pub trait Config: Config + Config {
    type Event: From<Event<Self>> + Into<<Self as Config>::Event> + IsType<<Self as Config>::Event>;
    type WeightInfo: WeightInfo;
    type TimeProvider: UnixTime;
}
Expand description

Config of the workflows pallet

Associated Types

The overarching event type.

Weight information for extrinsics for this pallet.

Timestamps provider

Implementors