bleep bloop

This commit is contained in:
tsmethurst 2021-04-09 23:55:57 +02:00
commit b713ccac9f
15 changed files with 337 additions and 36 deletions

View file

@ -5,6 +5,8 @@ import (
"github.com/superseriousbusiness/gotosocial/internal/config"
)
// NewLocal returns an implementation of the Storage interface that uses
// the local filesystem for storing and retrieving files, attachments, etc.
func NewLocal(c *config.Config, log *logrus.Logger) (Storage, error) {
return &localStorage{}, nil
}