Macro portaldi::di_provider

source ·
di_provider!() { /* proc-macro */ }
Expand description

Generate a [DIProvider] implementation.

pub struct Hoge {}

// This macro is useful if you want to define the [`DIProvider`] manually.
di_provider!(Hoge, |c| {
    // some creation logic
});