summaryrefslogtreecommitdiff
path: root/internal/cli/showcase_only_handler.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-28 10:31:39 +0300
committerPaul Buetow <paul@buetow.org>2026-05-28 10:31:39 +0300
commit5ffe9658f0c752e899e99b91ef17d0f1baff7325 (patch)
tree395c206547374639f9f86e30c4348086be49c619 /internal/cli/showcase_only_handler.go
parent2eb6ea18b942ae2ac3ed54f09d4dab3032788d46 (diff)
fix(clients): normalize constructor signatures and pointer returns (iq)
Diffstat (limited to 'internal/cli/showcase_only_handler.go')
-rw-r--r--internal/cli/showcase_only_handler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cli/showcase_only_handler.go b/internal/cli/showcase_only_handler.go
index 1a2a835..b836a27 100644
--- a/internal/cli/showcase_only_handler.go
+++ b/internal/cli/showcase_only_handler.go
@@ -96,7 +96,7 @@ func getAllRepositories(cfg *config.Config) ([]string, error) {
// Add Codeberg public repos if configured
if codebergOrg := cfg.FindCodebergOrg(); codebergOrg != nil {
fmt.Printf("Fetching public repositories from Codeberg user/org: %s...\n", codebergOrg.Name)
- client := codeberg.NewClient(codebergOrg.Name, codebergOrg.CodebergToken)
+ client := codeberg.NewClient(codebergOrg.CodebergToken, codebergOrg.Name)
repos, err := client.ListPublicRepos()
if err != nil {