=================== 存储服务实现 =================== LocalStorage 本地存储实现
| 305 | |
| 306 | // LocalStorage 本地存储实现 |
| 307 | type LocalStorage struct{} |
| 308 | |
| 309 | func (ls *LocalStorage) SaveFile(file io.Reader, filename string, size int64) (string, error) { |
| 310 | // 读取文件内容 |
nothing calls this directly
no outgoing calls
no test coverage detected