You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bit4sat/main.go

20 lines
270 B
Go

package main
import (
"git.sp4ke.com/sp4ke/bit4sat/api"
"git.sp4ke.com/sp4ke/bit4sat/db"
"git.sp4ke.com/sp4ke/bit4sat/watchers"
)
func main() {
go watchers.WatchInvoice()
defer db.DB.Sql.Close()
v1 := api.NewAPI()
defer api.SessionStore.Close()
v1.Run()
}