|
@@ -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
|
|
|
}
|
|
|
|