mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 03:01:32 +03:00
7 lines
144 B
Go
7 lines
144 B
Go
|
package replays
|
||
|
|
||
|
type StorageProvider interface {
|
||
|
Setup() error
|
||
|
Save(localFilePath, destinationPath string, retryCount int) (string, error)
|
||
|
}
|