mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
13 lines
270 B
Go
13 lines
270 B
Go
package entity
|
|
|
|
type GitPayload struct {
|
|
Paths []string `json:"paths"`
|
|
CommitMessage string `json:"commit_message"`
|
|
Branch string `json:"branch"`
|
|
Tag string `json:"tag"`
|
|
}
|
|
|
|
type GitConfig struct {
|
|
Url string `json:"url" bson:"url"`
|
|
}
|