代码拉取完成,页面将自动刷新
package github
import (
"fmt"
)
type searchResult struct {
Items []Account `json:"items"`
}
//Account defines properties an account on github has
type Account struct {
ID int `json:"id,omitempty"`
Login string `json:"login,omitempty"`
Name string `json:"name,omitempty"`
AvatarURL string `json:"avatar_url,omitempty"`
HTMLURL string `json:"html_url,omitempty"`
Type string `json:"type,omitempty"`
}
//Team defines properties a team on github has
type Team struct {
ID int `json:"id,omitempty"`
Organization map[string]interface{} `json:"organization,omitempty"`
Name string `json:"name,omitempty"`
Slug string `json:"slug,omitempty"`
}
func (t *Team) toGithubAccount(url string, account *Account) {
account.ID = t.ID
account.Name = t.Name
orgLogin := (t.Organization["login"]).(string)
account.AvatarURL = t.Organization["avatar_url"].(string)
account.HTMLURL = fmt.Sprintf(url, orgLogin, t.Slug)
account.Login = t.Slug
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。