unknown há 4 anos atrás
pai
commit
e2908d3eca
1 ficheiros alterados com 5 adições e 3 exclusões
  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()
 }