Start building out the backend with database

This commit is contained in:
Michał Gdula 2024-05-05 17:51:34 +01:00
parent 17476d3f2c
commit 677b4277a6
11 changed files with 241 additions and 63 deletions

View file

@ -2,8 +2,12 @@ package main
import (
"github.com/Fluffy-Bean/TastyBites/cmd"
"github.com/Fluffy-Bean/TastyBites/database"
)
func main() {
// Open the DB here, because I'm gamer
database.Open()
cmd.Parse()
database.Close()
}