mirror of
https://github.com/owncast/owncast.git
synced 2024-12-18 07:12:33 +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)
|
||
|
}
|