mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-28 02:16:07 +00:00
14 lines
217 B
Go
14 lines
217 B
Go
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()
|
|
}
|