Storage represents fs file storage
| 4 | |
| 5 | // Storage represents fs file storage |
| 6 | type Storage struct { |
| 7 | fs http.Dir |
| 8 | config *Config |
| 9 | } |
| 10 | |
| 11 | // New creates a new Storage instance. |
| 12 | func New(config *Config) (*Storage, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected