First proof-of-concept version

This commit is contained in:
2025-04-25 10:55:12 +02:00
parent 7442746e59
commit 7c9597c938
6 changed files with 249 additions and 34 deletions
+6 -4
View File
@@ -14,10 +14,12 @@ type GiteaClient struct {
}
type Repository struct {
Name string `json:"name"`
CloneURL string `json:"clone_url"`
Owner Owner `json:"owner"`
FullName string `json:"full_name"`
Name string `json:"name"`
CloneURL string `json:"clone_url"`
Owner Owner `json:"owner"`
FullName string `json:"full_name"`
Template bool `json:"template"`
Topics []string `json:"topics"`
}
type Owner struct {