proto_blue_api/generated/com/atproto/sync/requestCrawl.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.sync.requestCrawl
3
4use serde::{Deserialize, Serialize};
5
6/// Request a service to persistently crawl hosted repos. Expected use is new PDS instances declaring their existence to Relays. Does not require auth.
7/// XRPC Procedure: com.atproto.sync.requestCrawl
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11 pub hostname: String,
12}