progenitor_client/
lib.rs

1// Copyright 2022 Oxide Computer Company
2
3//! Support for generated clients.
4
5#![deny(missing_docs)]
6
7mod progenitor_client;
8
9pub use crate::progenitor_client::*;
10
11// For stand-alone crates, rather than adding a dependency on
12// progenitor-client, we simply dump the code right in. This means we don't
13// need to determine the provenance of progenitor (crates.io, github, etc.)
14// when generating the stand-alone crate.
15#[doc(hidden)]
16pub fn code() -> &'static str {
17    include_str!("progenitor_client.rs")
18}