1use utoipa::OpenApi;
23/// Schema generator executable
4///
5/// This executable statically generates the OpenAPI schema from the available API
6fn main() -> Result<(), Box<dyn std::error::Error>> {
7println!("{}", hoprd_api::ApiDoc::openapi().to_pretty_json()?);
89Ok(())
10}