malvin 0.2.4

Non-interactive research and coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(unused_imports, clippy::wildcard_imports)]
mod inline {
    use crate::acp::import_prelude::*;
    use crate::acp::*;
    include!("retry_policy.rs");
}

#[path = "retry_teardown.rs"]
mod retry_teardown;

pub(crate) use inline::*;
pub(crate) use retry_teardown::*;

#[cfg(test)]
#[path = "retry_policy_test_mods.rs"]
mod retry_policy_test_mods;