ghost-node/pallets/slow-clap/src/weights.rs
2025-05-31 14:30:15 +03:00

12 lines
241 B
Rust

use frame_support::weights::Weight;
pub trait WeightInfo {
fn slow_clap() -> Weight;
fn applause()-> Weight;
}
impl WeightInfo for () {
fn slow_clap()-> Weight { Weight::zero() }
fn applause()-> Weight { Weight::zero() }
}