| 10 | ) |
| 11 | |
| 12 | type StorageService interface { |
| 13 | MountStorage(mountPoint, fs string) error |
| 14 | UnmountStorage(mountPoint string) error |
| 15 | GetStorages() (httper.MountList, error) |
| 16 | CreateConfig(data map[string]string, name string, t string) error |
| 17 | CheckAndMountByName(name string) error |
| 18 | CheckAndMountAll() error |
| 19 | GetConfigByName(name string) (map[string]string, error) |
| 20 | DeleteConfigByName(name string) error |
| 21 | GetConfig() (httper.RemotesResult, error) |
| 22 | } |
| 23 | |
| 24 | type storageStruct struct { |
| 25 | } |
no outgoing calls
no test coverage detected