getRepoStatus method

Future<XRPCResponse<SyncGetRepoStatusOutput>> getRepoStatus({
  1. required String did,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.

Implementation

Future<XRPCResponse<SyncGetRepoStatusOutput>> getRepoStatus({
  required String did,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetRepoStatus(
  did: did,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);