comAtprotoSyncGetRepoStatus function
Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.
Implementation
Future<XRPCResponse<SyncGetRepoStatusOutput>> comAtprotoSyncGetRepoStatus({
required String did,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoSyncGetRepoStatus,
headers: $headers,
parameters: {...?$unknown, 'did': did},
to: const SyncGetRepoStatusOutputConverter().fromJson,
);