Factor out all non-generic implementations #250

Closed
lash wants to merge 29 commits from lash/purify-max into master
2 changed files with 5 additions and 1 deletions
Showing only changes of commit f0a4a0df61 - Show all commits

View File

@ -57,3 +57,7 @@ func(ss *StorageService) GetUserdataDb(ctx context.Context) (db.Db, error) {
func(ss *StorageService) GetResource(ctx context.Context) (resource.Resource, error) {
return nil, errors.New("not implemented")
}
func(ss *StorageService) GetStateStore(ctx context.Context) (db.Db, error) {
return ss.svc.GetStateStore(ctx)
}

View File

@ -1,4 +1,4 @@
package common
package errors
import (
"git.grassecon.net/urdt/ussd/internal/handlers"