14 Star 29 Fork 41

openEuler/go-gitee
Closed

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
hook_branchhook_accessors.go 467 Bytes
Copy Edit Raw Blame History
wanghao authored 2021-12-02 11:03 +08:00 . add some new files
package gitee
func (b *BranchHook) GetLabel() string {
if b == nil {
return ""
}
return b.Label
}
func (b *BranchHook) GetRef() string {
if b == nil {
return ""
}
return b.Ref
}
func (b *BranchHook) GetSha() string {
if b == nil {
return ""
}
return b.Sha
}
func (b *BranchHook) GetUser() *UserHook {
if b == nil {
return nil
}
return b.User
}
func (b *BranchHook) GetRepo() *ProjectHook {
if b == nil {
return nil
}
return b.Repo
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/openeuler/go-gitee.git
git@gitee.com:openeuler/go-gitee.git
openeuler
go-gitee
go-gitee
a0f78272dafc

Search