You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
522 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package ProtoController
import (
"github.com/gin-gonic/gin"
)
//模块的路由配置
func Routers(r *gin.RouterGroup) {
//rr := r.Group("/proto")
//注册get方法
//rr.GET("/ListProto", ListProto)
return
}
/**
功能:获取开发者名单
作者:黄海
时间2020-04-23
*/
func ListPerson(c *gin.Context) {
//list := ProtoService.ListPerson()
////3、返回回执信息
//c.JSON(http.StatusOK, Model.Res{
// Code: 0,
// Count: len(list),
// Data: list,
// Msg: "获取数据成功!",
//})
}