mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-05-28 14:23:12 +00:00
Start building out the backend with database
This commit is contained in:
parent
17476d3f2c
commit
677b4277a6
11 changed files with 241 additions and 63 deletions
4
main.go
4
main.go
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue