main.go 153 B

12345678910111213
  1. package main
  2. import (
  3. "duoduo/database"
  4. "duoduo/routers"
  5. "fmt"
  6. )
  7. func main() {
  8. fmt.Println("hello duo!")
  9. database.Setup()
  10. routers.InitRouter()
  11. }