Skip to main content

luminos_contracts/support/
deferrable_provider.rs

1pub trait DeferrableProvider {
2    /// Get the services provided by the provider.
3    fn provides() -> &'static [&'static str]; 
4}