diff --git a/http/api/remote.go b/http/api/remote.go new file mode 100644 index 0000000..7a754fa --- /dev/null +++ b/http/api/remote.go @@ -0,0 +1,33 @@ +package api + +import "github.com/gin-gonic/gin" + +type remote struct{} + +func Remote() remote { + return remote{} +} + +// SaveAuthClient +// @description: 添加授权客户端 +// @receiver remote +// @param c +func (remote) SaveAuthClient(c *gin.Context) { + return +} + +// DeleteAuthClient +// @description: 删除授权客户端 +// @receiver remote +// @param c +func (remote) DeleteAuthClient(c *gin.Context) { + return +} + +// GetClientNodes +// @description: 获取客户端节点 +// @receiver remote +// @param c +func (remote) GetClientNodes(c *gin.Context) { + return +}