diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-27 23:24:36 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-27 23:24:36 +0300 |
| commit | 79e882713b195e4674dc693169ecf7dbf956a91e (patch) | |
| tree | b00325ea3f519676bc389cce735447249bef69a6 /internal/config | |
| parent | 59d7b258cff47b0640f44f1068460403459a4bde (diff) | |
feat: implement --create-codeberg-repos
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/config.go | 7 |
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 |
