hatecomputers.club/adapters/files/files_adapter.go

9 lines
151 B
Go

package files
import "io"
type FilesAdapter interface {
CreateFile(path string, content io.Reader) (string, error)
DeleteFile(path string) error
}