Badges / coveralls (push) Successful in 1m4s
Allow us to generate year over year reports without having to rerun everything from the beginning. Co-authored-by: Natercio Moniz <[email protected]>
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
|
|
}
|