initial commit

Signed-off-by: Pin <Pin>
This commit is contained in:
Pin
2021-01-31 16:45:18 -05:00
committed by Pin
commit ab66454020
11 changed files with 230 additions and 0 deletions

12
init.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"./db/dbinit"
"log"
_ "github.com/joho/godotenv/autoload"
)
func main() {
log.Println("Initializing Database")
dbinit.InitDB()
}