38 lines
787 B
Go
38 lines
787 B
Go
// Package router ...
|
|
//
|
|
// Description : router ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2024-07-20 23:24
|
|
package router
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type TestController struct{}
|
|
|
|
func (t TestController) Logic(ctx *gin.Context, formData *TestForm) (any, error) {
|
|
return formData, nil
|
|
}
|
|
|
|
type TestForm struct {
|
|
Meta `tag:"测试表单" path:"/a/b/c/d" desc:"测试接口" method:"get" strict:"true"`
|
|
Age int `json:"age" form:"age" binding:"min=20"`
|
|
Name string `json:"name" form:"name"`
|
|
Test *Test `json:"test" form:"test"`
|
|
Num *int64 `json:"num" form:"num"`
|
|
}
|
|
type Test struct {
|
|
L string `json:"l"`
|
|
}
|
|
|
|
func Test_parseController(t *testing.T) {
|
|
r := gin.Default()
|
|
Group(r, "test", nil, TestController{})
|
|
r.Run(":8080")
|
|
}
|