1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! TODO: Add documentation including describing how the derive macros work

pub trait ServiceManager: 'static {
    #[doc(hidden)]
    fn __please_use_the_derive_attribute();
}

impl ServiceManager for () {
    #[doc(hidden)]
    fn __please_use_the_derive_attribute() {}
}