unknown 4 years ago
parent
commit
e2908d3eca
1 changed files with 5 additions and 3 deletions
  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()
 }