Factory can be used to connect to multiple s3 servers.
| 9 | |
| 10 | // Factory can be used to connect to multiple s3 servers. |
| 11 | type Factory struct { |
| 12 | *di.Factory |
| 13 | } |
| 14 | |
| 15 | // Make creates a s3 manager under the given name. |
| 16 | func (s Factory) Make(name string) (*Manager, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected