finclip-app-manager/application/application.go

39 lines
1.2 KiB
Go
Raw Permalink Normal View History

2023-10-31 14:07:26 +08:00
package application
/**
* DDD: application
*
* ,
*
* (service)
* (task)
*
**/
import (
"github.com/gin-gonic/gin"
)
/**
* @api {GET} /api/v1/finclip-app-manager/user [C/S]user api
* @apiGroup []@apiGroup ddd Gin Framework
* @apiVersion __API_VERSION__
* @apiSuccessExample {json} Success Status:
* HTTP/1.1 200 OK
* {
* "errcode": "OK",
* "error": "成功",
* "data":{
* "say":"hello"
* }
* }
* @apiErrorExample Error Status:
* HTTP/1.1 !=200
*/
func UserApi(c *gin.Context) {
//rsp := gin.H{"say": "hello"}
//utility.MakeRsp(c, http.StatusOK, utility.OK, rsp)
return
}