Remove commented code

This commit is contained in:
lash 2025-01-04 13:21:31 +00:00
parent 2992f7ae8e
commit a4d6cef9c0
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 0 additions and 6 deletions

View File

@ -69,10 +69,6 @@ func (ms *MenuStorageService) SetConn(connStr string) error {
func (ms *MenuStorageService) getOrCreateDb(ctx context.Context, existingDb db.Db, section string) (db.Db, error) {
var newDb db.Db
var err error
// database, ok := ctx.Value("Database").(string)
// if !ok {
// return nil, fmt.Errorf("failed to select the database")
// }
if existingDb != nil {
return existingDb, nil

View File

@ -45,10 +45,8 @@ func TestEngine(sessionId string) (engine.Engine, func(), chan bool) {
os.Exit(1)
}
resourceDir := scriptDir
//menuStorageService := storage.NewMenuStorageService(connStr, resourceDir)
menuStorageService := storage.NewMenuStorageService(resourceDir)
//err := menuStorageService.EnsureDbDir()
err = menuStorageService.SetConn(connStr)
if err != nil {
fmt.Fprintf(os.Stderr, "conn error: %v", err)