2022-03-15 23:11:47 +00:00
|
|
|
// Copyright 2022 Oxide Computer Company
|
2021-10-29 14:16:39 +00:00
|
|
|
|
2022-05-13 17:26:22 +00:00
|
|
|
mod progenitor_client;
|
2021-10-29 14:16:39 +00:00
|
|
|
|
2022-05-13 17:26:22 +00:00
|
|
|
pub use crate::progenitor_client::*;
|
2022-02-08 16:59:38 +00:00
|
|
|
|
2022-07-08 18:24:37 +00:00
|
|
|
// For stand-alone crates, rather than adding a dependency on
|
|
|
|
// progenitor-client, we simply dump the code right in. This means we don't
|
|
|
|
// need to determine the provenance of progenitor (crates.io, github, etc.)
|
|
|
|
// when generating the stand-alone crate.
|
2022-02-08 16:59:38 +00:00
|
|
|
#[doc(hidden)]
|
2022-05-13 17:26:22 +00:00
|
|
|
pub fn code() -> &'static str {
|
|
|
|
include_str!("progenitor_client.rs")
|
2022-02-08 16:59:38 +00:00
|
|
|
}
|