comAtprotoSyncRequestCrawl function
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>> comAtprotoSyncRequestCrawl({
required String hostname,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.comAtprotoSyncRequestCrawl,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'hostname': hostname},
);