···1919 Users []*RepoListRepos_User `json:"users" cborgen:"users"`
2020}
21212222+// RepoListRepos_RepoEntry is a "repoEntry" in the sh.tangled.repo.listRepos schema.
2323+type RepoListRepos_RepoEntry struct {
2424+ // defaultBranch: Default branch of the repository
2525+ DefaultBranch *string `json:"defaultBranch,omitempty" cborgen:"defaultBranch,omitempty"`
2626+ // did: DID of the repository owner
2727+ Did string `json:"did" cborgen:"did"`
2828+ // fullPath: Full path to the repository
2929+ FullPath string `json:"fullPath" cborgen:"fullPath"`
3030+ // name: Repository name
3131+ Name string `json:"name" cborgen:"name"`
3232+}
3333+2234// RepoListRepos_User is a "user" in the sh.tangled.repo.listRepos schema.
2335type RepoListRepos_User struct {
3636+ // did: DID of the user
2437 Did string `json:"did" cborgen:"did"`
2538 Repos []*RepoListRepos_RepoEntry `json:"repos" cborgen:"repos"`
2626-}
2727-2828-// RepoListRepos_RepoEntry is a "repoEntry" in the sh.tangled.repo.listRepos schema.
2929-type RepoListRepos_RepoEntry struct {
3030- Name string `json:"name" cborgen:"name"`
3131- Did string `json:"did" cborgen:"did"`
3232- FullPath string `json:"fullPath" cborgen:"fullPath"`
3333- DefaultBranch string `json:"defaultBranch,omitempty" cborgen:"defaultBranch,omitempty"`
3439}
35403641// RepoListRepos calls the XRPC method "sh.tangled.repo.listRepos".