comAtprotoRepoDescribeRepo function
Get information about an account and repository, including the list of collections. Does not require auth.
Implementation
Future<XRPCResponse<RepoDescribeRepoOutput>> comAtprotoRepoDescribeRepo({
required String repo,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoRepoDescribeRepo,
headers: $headers,
parameters: {...?$unknown, 'repo': repo},
to: const RepoDescribeRepoOutputConverter().fromJson,
);