mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
9 lines
268 B
Go
9 lines
268 B
Go
|
package models
|
||
|
|
||
|
//ChunkStorageProvider is how a chunk storage provider should be implemented
|
||
|
type ChunkStorageProvider interface {
|
||
|
Setup() error
|
||
|
Save(filePath string, retryCount int) (string, error)
|
||
|
GenerateRemotePlaylist(playlist string, variant Variant) string
|
||
|
}
|