diff --git a/generator/src/main.rs b/generator/src/main.rs index 79fd479..d9e26b8 100644 --- a/generator/src/main.rs +++ b/generator/src/main.rs @@ -13,6 +13,7 @@ use std::fmt::Write; fn main() -> eyre::Result<()> { let spec = get_spec()?; let mut s = String::new(); + s.push_str("use crate::ForgejoError;\n"); s.push_str("impl Forgejo {\n"); for (path, item) in &spec.paths { s.push_str(&create_methods_for_path(&spec, path, item).wrap_err_with(|| path.clone())?);