*fiddles*

This commit is contained in:
tsmethurst 2021-03-31 18:54:37 +02:00
commit 48ab34f71a
12 changed files with 221 additions and 74 deletions

View file

@ -18,16 +18,7 @@
package storage
import "time"
type Storage interface {
StoreFileAt(path string, data []byte) error
RetrieveFileFrom(path string) ([]byte, error)
}
type FileInfo struct {
Data []byte
StorePath string
CreatedAt time.Time
UpdatedAt time.Time
}