datarhei-dragonfork-core/restream/store/store.go

10 lines
153 B
Go
Raw Normal View History

2022-05-13 13:26:45 -04:00
package store
type Store interface {
// Load data from the store
Load() (StoreData, error)
// Save data to the store
Store(data StoreData) error
}