Kernel constructor

Kernel()

Implementation

Kernel() {
  ioc.bind(namespace: Service.event, service: events);
  ioc.bind(namespace: Service.command, service: commands);
  ioc.bind(namespace: Service.store, service: stores);
  ioc.bind(namespace: Service.modules, service: modules);
  ioc.bind(namespace: Service.cli, service: cli);
  ioc.bind(namespace: Service.contextMenu, service: contextMenus);
  ioc.bind(namespace: Service.environment, service: environment);

}