main.go 120 B

123456789101112
  1. package main
  2. import (
  3. "fmt"
  4. "test/routes"
  5. )
  6. func main() {
  7. fmt.Println("hello")
  8. //路由初始化
  9. routes.Init()
  10. }