#![expect(missing_debug_implementations, clippy::empty_structs_with_brackets, reason = "Unit tests")]
#![expect(dead_code, reason = "This is just an example.")]
#[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() {}