This commit is contained in:
2025-08-15 08:52:46 +02:00
parent 71298a9704
commit 43ffedfad8
36 changed files with 517 additions and 550 deletions

View File

@@ -12,7 +12,7 @@ pub fn (mut client GiteaClient) user_list_repos() ![]Repository {
prefix: '/user/repos'
}
mut http_client := client.httpclient()!
r:=http_client.get_json_list_generic[Repository](req)!
r := http_client.get_json_list_generic[Repository](req)!
return r
}