requestCrawl method
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,
);