13 lines
303 B
Go
13 lines
303 B
Go
package internal
|
|
|
|
// EphemeralStore loads an empty state and discards everything on save
|
|
type EphemeralStore struct{}
|
|
|
|
func (EphemeralStore) Load() (map[string]*FillerQueue, error) {
|
|
return make(map[string]*FillerQueue), nil
|
|
}
|
|
|
|
func (EphemeralStore) Save(map[string]*FillerQueue) error {
|
|
return nil
|
|
}
|