mirror of
https://github.com/datarhei/core.git
synced 2025-10-04 15:42:57 +08:00
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
|
|
}
|