fileserver working

This commit is contained in:
tsmethurst 2021-04-11 19:53:22 +02:00
commit 2fa5519d55
18 changed files with 480 additions and 133 deletions

View file

@ -25,6 +25,6 @@ package storage
type Storage interface {
StoreFileAt(path string, data []byte) error
RetrieveFileFrom(path string) ([]byte, error)
ListKeys() ([]string, error)
RemoveFileAt(path string) error
ListKeys() ([]string, error)
RemoveFileAt(path string) error
}