1 Star 0 Fork 0

drama10096/oauth2

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
client.go 440 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyric 提交于 2016-09-21 11:20 +08:00 . update the implementation details
package models
// Client client model
type Client struct {
ID string
Secret string
Domain string
UserID string
}
// GetID client id
func (c *Client) GetID() string {
return c.ID
}
// GetSecret client domain
func (c *Client) GetSecret() string {
return c.Secret
}
// GetDomain client domain
func (c *Client) GetDomain() string {
return c.Domain
}
// GetUserID user id
func (c *Client) GetUserID() string {
return c.UserID
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/drama10096/oauth2.git
git@gitee.com:drama10096/oauth2.git
drama10096
oauth2
oauth2
v3.9.2

搜索帮助