1 2 3 4 5 6 7 8
use super::ModuleBuilder; mod collections; mod runtime; pub(super) fn construct(module: &mut ModuleBuilder) { module.submodule("runtime", runtime::construct); }