bur-manager/gitea/orgs.v

14 lines
257 B
Coq
Raw Normal View History

2022-11-26 15:28:45 +01:00
module gitea
pub struct Repository {
pub:
id i64
name string
description string
clone_url string
}
pub fn (c &Client) org_repos(name string, conf PagingConfig) ![]Repository {
return c.get<[]Repository>('/orgs/$name/repos', conf)
}