summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-27 23:24:36 +0300
committerPaul Buetow <paul@buetow.org>2025-06-27 23:24:36 +0300
commit79e882713b195e4674dc693169ecf7dbf956a91e (patch)
treeb00325ea3f519676bc389cce735447249bef69a6 /internal/config
parent59d7b258cff47b0640f44f1068460403459a4bde (diff)
feat: implement --create-codeberg-repos
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 92d2c86..ef8e3b6 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -10,9 +10,10 @@ import (
// Organization represents a git organization with its host and name
type Organization struct {
- Host string `json:"host"`
- Name string `json:"name"`
- GitHubToken string `json:"github_token,omitempty"`
+ Host string `json:"host"`
+ Name string `json:"name"`
+ GitHubToken string `json:"github_token,omitempty"`
+ CodebergToken string `json:"codeberg_token,omitempty"`
}
// Config holds the application configuration