git.delta.rocks / unique-network / refs/commits / c0114cbde782

difftreelog

source

pallets/balances-adapter/src/lib.rs308 Bsourcehistory
1// #![doc = include_str!("../README.md")]2#![cfg_attr(not(feature = "std"), no_std)]3#![warn(missing_docs)]45#[frame_support::pallet]6pub mod pallet {7	#[pallet::config]8	pub trait Config: frame_system::Config {}9	#[pallet::pallet]10	pub struct Pallet<T>(_);1112	#[pallet::call]13	impl<T: Config> Pallet<T> {}14}