Advanced Module
The advanced module provides functionality for IOTA SDK platform.
Features
This module includes essential features for advanced management.
Usage
Load a module by passing it to modules.Load; the module’s Register(app) is called internally. Always check the returned error so registration failures are caught at startup:
if err := modules.Load(app, yourModule); err != nil {
return err
}
// or with built-ins:
if err := modules.Load(app, modules.BuiltInModules..., yourModule); err != nil {
return err
}Last updated on