Function createModule [src]
This function creates a private module, to be used by the current package,
but not exposed to other packages depending on this one.
addModule can be used instead to create a public module.
Prototype
pub fn createModule(b: *Build, options: Module.CreateOptions) *Module
Parameters
b: *Build
options: Module.CreateOptions
Source
pub fn createModule(b: *Build, options: Module.CreateOptions) *Module {
return Module.create(b, options);
}