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