unknown hace 4 años
padre
commit
e2908d3eca
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. 5 3
      main.go

+ 5 - 3
main.go

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