tank/main.go
2022-03-15 01:19:44 +08:00

15 lines
224 B
Go

package main
import (
"github.com/eyebluecn/tank/code/core"
"github.com/eyebluecn/tank/code/support"
_ "gorm.io/driver/mysql"
)
func main() {
core.APPLICATION = &support.TankApplication{}
core.APPLICATION.Start()
}