feat: implement create command

This commit is contained in:
2025-09-22 23:38:55 +05:30
parent eb79ba5634
commit a582636e16
6 changed files with 137 additions and 7 deletions

View File

@@ -28,7 +28,7 @@ func InitDb() {
var openErr error
DB, openErr = gorm.Open(sqlite.Open(path.Join(EnvyPath, "envy.db")), &gorm.Config{})
if openErr != nil {
ErrPrint("Error while opening database:" + openErr.Error())
ErrPrint("Error while opening database:", openErr.Error())
}
}