mirror of
https://gitee.com/gokins/gokins.git
synced 2024-12-01 18:58:35 +08:00
20 lines
197 B
Go
20 lines
197 B
Go
package hook
|
|
|
|
type (
|
|
Reference struct {
|
|
Name string
|
|
Path string
|
|
Sha string
|
|
}
|
|
|
|
Commit struct {
|
|
Sha string
|
|
Message string
|
|
Link string
|
|
}
|
|
|
|
User struct {
|
|
UserName string
|
|
}
|
|
)
|