34 lines
557 B
Go
34 lines
557 B
Go
|
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
|
||
|
}
|