From 5f200ea989230417b8914969d506b5d54992e5bb Mon Sep 17 00:00:00 2001 From: coward Date: Fri, 23 Aug 2024 11:25:27 +0800 Subject: [PATCH] =?UTF-8?q?:art:=E4=B8=8D=E6=83=B3=E5=86=99=E5=95=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- http/api/remote.go | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/api/remote.go 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 +}