diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-24 15:53:42 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-24 15:53:42 +0530 |
commit | 5329b1fd16d0b8940f9526b523676dfb1cdbf317 (patch) | |
tree | d65963f6a797e72c2fae8332568bddc00d2293a9 /server/main.go | |
parent | e21a1c15a2e4bf3e51cdd7a5671bbfee5837ef13 (diff) |
switching to typescript
Diffstat (limited to 'server/main.go')
-rw-r--r-- | server/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/main.go b/server/main.go index 2f0d87f..287e4cc 100644 --- a/server/main.go +++ b/server/main.go @@ -13,8 +13,10 @@ package main import ( router "github.com/MikunoNaka/openbills/router" + db "github.com/MikunoNaka/openbills/database" ) func main() { + db.InitDB() router.InitRouter() } |