This commit is contained in:
2025-10-20 00:15:57 +02:00
parent 68902f86af
commit 8ca8918966
7 changed files with 204 additions and 0 deletions

15
pkg/project/project.go Normal file
View 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"`
}
)