Files
drogobox-server/internal/storage/local.go
T
2026-05-19 21:15:27 -06:00

40 lines
354 B
Go

package storage
//import ()
type LocalStorage {
BaseDir string
}
func UploadFile(dirPath, filename string, data io.Reader) error {
//
}
func ListFiles(dirPath) {
//
}
func ReadFile() {
//
}
func WriteFile() {
//
}
func CloseFile() {
//
}
func DeleteFile() {
//
}
func DeleteDirectory() {
//
}
func DeleteDirectoryRecursive() {
//
}