Ai
28 Star 263 Fork 76

开源中国/mcp-gitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
basic.go 972 Bytes
一键复制 编辑 原始数据 按行查看 历史
package types
type PagedResponse[T any] struct {
TotalCount int `json:"total_count"`
Data []T `json:"data"`
}
type BasicUser struct {
Id int `json:"id"`
Login string `json:"login"`
Name string `json:"name"`
AvatarUrl string `json:"avatar_url"`
HtmlUrl string `json:"html_url"`
Remark string `json:"remark"`
}
type BasicEnterprise struct {
Id int `json:"id"`
Name string `json:"name"`
Path string `json:"path"`
HtmlUrl string `json:"html_url"`
}
type BasicProgram struct {
Id int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Assignee BasicUser `json:"assignee"`
Author BasicUser `json:"author"`
}
type EndpointConfig struct {
UrlTemplate string
PathParams []string
}
type IssueTypeDetail struct {
Id int `json:"id"`
Title string `json:"title"`
}
type BasicLabel struct {
Id int `json:"id"`
Name string `json:"name"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oschina/mcp-gitee.git
git@gitee.com:oschina/mcp-gitee.git
oschina
mcp-gitee
mcp-gitee
master

搜索帮助