package main import ( "duoduo/database" "duoduo/routers" "fmt" ) func main() { fmt.Println("hello duo!") database.Setup() routers.InitRouter() }