Skip to content
Snippets Groups Projects
Commit c83bca67 authored by Alexander Popiak's avatar Alexander Popiak Committed by GitHub
Browse files

make AllModules public (#8017)

* make AllModules public

* add doc comments for AllModules
parent c42d756f
No related merge requests found
......@@ -470,8 +470,11 @@ fn decl_all_modules<'a>(
quote!(
#types
type AllModules = ( #all_modules );
type AllModulesWithSystem = ( #all_modules_with_system );
/// All pallets included in the runtime as a nested tuple of types.
/// Excludes the System pallet.
pub type AllModules = ( #all_modules );
/// All pallets included in the runtime as a nested tuple of types.
pub type AllModulesWithSystem = ( #all_modules_with_system );
)
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment