wip cli
This commit is contained in:
15
pkg/project/project.go
Normal file
15
pkg/project/project.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package project
|
||||
|
||||
type (
|
||||
Project struct {
|
||||
Name string `json:"name"`
|
||||
Repositories []Repository `json:"repositories"`
|
||||
}
|
||||
|
||||
Repository struct {
|
||||
Name string `json:"name"`
|
||||
Schedule string `json:"schedule"`
|
||||
Source string `json:"source"`
|
||||
Destination string `json:"destination"`
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user