use std::env;
use std::path::Path;
fn main() {
let input = Path::new("scout-service-api.conjure.json").to_path_buf();
let output = Path::new(&env::var_os("OUT_DIR").unwrap()).join("conjure");
println!("cargo:rerun-if-changed={}", input.display());
conjure_codegen::Config::new()
.strip_prefix("io.nominal".to_string())
.generate_files(input, output)
.unwrap();
}