@@ -1,10 +1,12 @@
package main
-import "test/routes"
+import (
+ "fmt"
+ "test/routes"
+)
func main() {
- //fmt.Println("hello")
+ fmt.Println("hello")
//路由初始化
-
routes.Init()
}