mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-06-13 02:41:01 +00:00
Update template triggered by workflow_dispatch
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//! A shell pallet built with [`frame`].
|
||||
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
use frame::prelude::*;
|
||||
|
||||
// Re-export all pallet parts, this is needed to properly import the pallet into the runtime.
|
||||
pub use pallet::*;
|
||||
|
||||
#[frame::pallet]
|
||||
pub mod pallet {
|
||||
use super::*;
|
||||
|
||||
#[pallet::config]
|
||||
pub trait Config: frame_system::Config {}
|
||||
|
||||
#[pallet::pallet]
|
||||
pub struct Pallet<T>(_);
|
||||
}
|
||||
Reference in New Issue
Block a user