initial commit

Signed-off-by: Pin <wf6DJd8a3xSSCZbn@protonmail.com>
This commit is contained in:
Pin
2021-01-31 16:45:18 -05:00
committed by Pin
commit a41acf7fcc
11 changed files with 215 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()
}