timoth-y/kicksware-api

View on GitHub
services/cdn/core/repo/contentRepository.go

Summary

Maintainability
A
0 mins
Test Coverage
package repo

type ContentRepository interface {
    Download(from, filename string) ([]byte, error)
    Upload(to string, filename string, content []byte) (string, error)
}