remove redundant code

This commit is contained in:
2024-09-19 17:01:23 +03:00
parent ffa00ae15c
commit bc9dfe4f65
2 changed files with 6 additions and 4 deletions

View File

@@ -45,6 +45,12 @@ func main() {
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)
if err != nil {
fmt.Fprintf(os.Stderr, err.Error())