Ai
28 Star 263 Fork 76

开源中国/mcp-gitee

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
repository.go 1.93 KB
Copy Edit Raw Blame History
package types
type Project struct {
Id int `json:"id"`
FullName string `json:"full_name"`
HumanName string `json:"human_name"`
Url string `json:"url"`
Namespace Namespace `json:"namespace"`
Owner BasicUser `json:"owner"`
Assigner BasicUser `json:"assigner"`
Description string `json:"description"`
Private bool `json:"private"`
Public bool `json:"public"`
Internal bool `json:"internal"`
Fork bool `json:"fork"`
SshUrl string `json:"ssh_url"`
Recommend bool `json:"recommend"`
Gvp bool `json:"gvp"`
StargazersCount int `json:"stargazers_count"`
ForksCount int `json:"forks_count"`
WatchersCount int `json:"watchers_count"`
DefaultBranch string `json:"default_branch"`
Members []string `json:"members"`
PushedAt string `json:"pushed_at"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
Permission map[string]bool `json:"permission"`
Status string `json:"status"`
Enterprise BasicEnterprise `json:"enterprise"`
}
type Namespace struct {
Id int `json:"id"`
Type string `json:"type"`
Name string `json:"name"`
Path string `json:"path"`
HtmlUrl string `json:"html_url"`
}
type SearchProject struct {
Id int `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
Description string `json:"description"`
Stars int `json:"stars"`
Forks int `json:"forks"`
Languages []string `json:"languages"`
LastPushAt string `json:"last_push_at"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oschina/mcp-gitee.git
git@gitee.com:oschina/mcp-gitee.git
oschina
mcp-gitee
mcp-gitee
master

Search