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

difftreelog

source

pallets/balances-adapter/src/lib.rs328 Bsourcehistory
1// #![doc = include_str!("../README.md")]2#![cfg_attr(not(feature = "std"), no_std)]3#![warn(missing_docs)]45pub use pallet::*;67#[frame_support::pallet]8pub mod pallet {9	#[pallet::config]10	pub trait Config: frame_system::Config {}11	#[pallet::pallet]12	pub struct Pallet<T>(_);1314	#[pallet::call]15	impl<T: Config> Pallet<T> {}16}