import ForgejoError
in generated file
This commit is contained in:
parent
769521840e
commit
3d12246cb8
|
@ -13,6 +13,7 @@ use std::fmt::Write;
|
||||||
fn main() -> eyre::Result<()> {
|
fn main() -> eyre::Result<()> {
|
||||||
let spec = get_spec()?;
|
let spec = get_spec()?;
|
||||||
let mut s = String::new();
|
let mut s = String::new();
|
||||||
|
s.push_str("use crate::ForgejoError;\n");
|
||||||
s.push_str("impl Forgejo {\n");
|
s.push_str("impl Forgejo {\n");
|
||||||
for (path, item) in &spec.paths {
|
for (path, item) in &spec.paths {
|
||||||
s.push_str(&create_methods_for_path(&spec, path, item).wrap_err_with(|| path.clone())?);
|
s.push_str(&create_methods_for_path(&spec, path, item).wrap_err_with(|| path.clone())?);
|
||||||
|
|
Loading…
Reference in a new issue