mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-17 18:37:29 -06:00
bleep bloop
This commit is contained in:
parent
a30a1a267b
commit
b713ccac9f
15 changed files with 337 additions and 36 deletions
|
|
@ -16,8 +16,12 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// Package storage contains an interface and implementations for storing and retrieving files and attachments.
|
||||
package storage
|
||||
|
||||
// Storage is an interface for storing and retrieving blobs
|
||||
// such as images, videos, and any other attachments/documents
|
||||
// that shouldn't be stored in a database.
|
||||
type Storage interface {
|
||||
StoreFileAt(path string, data []byte) error
|
||||
RetrieveFileFrom(path string) ([]byte, error)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue