main.go 109 B

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