main.go 116 B

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