remove redundant code
This commit is contained in:
parent
ffa00ae15c
commit
bc9dfe4f65
@ -45,6 +45,12 @@ func main() {
|
|||||||
|
|
||||||
menuStorageService := storage.MenuStorageService{}
|
menuStorageService := storage.MenuStorageService{}
|
||||||
|
|
||||||
|
err := menuStorageService.EnsureDbDir(dbDir)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, err.Error())
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
rs, err := menuStorageService.GetResource(scriptDir, ctx)
|
rs, err := menuStorageService.GetResource(scriptDir, ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(os.Stderr, err.Error())
|
fmt.Fprintf(os.Stderr, err.Error())
|
||||||
|
@ -31,10 +31,6 @@ type StorageService interface {
|
|||||||
type MenuStorageService struct{}
|
type MenuStorageService struct{}
|
||||||
|
|
||||||
func (menuStorageService *MenuStorageService) GetPersister(dbDir string, ctx context.Context) (*persist.Persister, error) {
|
func (menuStorageService *MenuStorageService) GetPersister(dbDir string, ctx context.Context) (*persist.Persister, error) {
|
||||||
err := ensureDbDir(dbDir)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
store := gdbmdb.NewGdbmDb()
|
store := gdbmdb.NewGdbmDb()
|
||||||
storeFile := path.Join(dbDir, "state.gdbm")
|
storeFile := path.Join(dbDir, "state.gdbm")
|
||||||
store.Connect(ctx, storeFile)
|
store.Connect(ctx, storeFile)
|
||||||
|
Loading…
Reference in New Issue
Block a user