10 lines
153 B
Go
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
|
|
}
|