Client is a gokv.Store implementation for S3.
| 17 | |
| 18 | // Client is a gokv.Store implementation for S3. |
| 19 | type Client struct { |
| 20 | c *awss3.S3 |
| 21 | bucketName string |
| 22 | codec encoding.Codec |
| 23 | } |
| 24 | |
| 25 | // Set stores the given value for the given key. |
| 26 | // Values are automatically marshalled to JSON or gob (depending on the configuration). |
nothing calls this directly
no outgoing calls
no test coverage detected