requestCrawl method

Future<XRPCResponse<EmptyData>> requestCrawl({
  1. required String hostname,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Request a service to persistently crawl hosted repos. Expected use is new PDS instances declaring their existence to Relays. Does not require auth.

Implementation

Future<XRPCResponse<EmptyData>> requestCrawl({
  required String hostname,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncRequestCrawl(
  hostname: hostname,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);