sunsheng 1 năm trước cách đây
mục cha
commit
7d54052215
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      src/api/version.go

+ 6 - 1
src/api/version.go

@@ -1,6 +1,10 @@
 package api
 
-import "github.com/gin-gonic/gin"
+import (
+	"fmt"
+
+	"github.com/gin-gonic/gin"
+)
 
 func Version(r *GinRouter) {
 	r.GET("/versions", GetVersion)
@@ -8,6 +12,7 @@ func Version(r *GinRouter) {
 }
 
 func GetVersion(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+	fmt.Println("succ")
 	return nil, nil
 }