#![expect(
missing_docs,
dead_code,
missing_debug_implementations,
clippy::empty_structs_with_brackets,
reason = "Example code"
)]
#[derive(Clone)]
pub struct Logger {}
#[fundle::deps]
struct DatabaseDeps {
_logger: Logger,
}
pub struct Database {}
impl Database {
fn new(_: impl Into<DatabaseDeps>) -> Self {
Self {}
}
}
fn main() {}