core/restream/store/store.go
2022-05-13 19:26:45 +02:00

10 lines
153 B
Go

package store
type Store interface {
// Load data from the store
Load() (StoreData, error)
// Save data to the store
Store(data StoreData) error
}