Files
mirror-sync/pkg/project/project.go
2025-10-20 01:35:32 +02:00

17 lines
356 B
Go

package project
type (
Project struct {
Name string `json:"name"`
Repositories []Repository `json:"repositories"`
ServerURL string `json:"-"`
}
Repository struct {
Name string `json:"name"`
Schedule string `json:"schedule"`
Source string `json:"source"`
Destination string `json:"destination"`
}
)