tank/main.go
2019-04-29 21:14:29 +08:00

15 lines
234 B
Go

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