unknown 4 年之前
父節點
當前提交
e2908d3eca
共有 1 個文件被更改,包括 5 次插入3 次删除
  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()
 }