This commit is contained in:
2025-11-01 20:53:38 +01:00
parent aa8851aca0
commit 6e4452ddb9
12 changed files with 457 additions and 106 deletions

View File

@@ -2,12 +2,14 @@ package project
type (
Project struct {
UUID string `json:"uuid"`
Name string `json:"name"`
Repositories []Repository `json:"repositories"`
ServerURL string `json:"-"`
}
Repository struct {
UUID string `json:"uuid"`
Name string `json:"name"`
Schedule string `json:"schedule"`
Source string `json:"source"`