package main import ( "dysy/database" "dysy/routers" ) func main() { //fmt.Println("hello") //数据库连接加载 database.Setup() routers.InitRouter() }