boot static method

void boot()

Implementation

static void boot() {
  if (_boot) return;
  _boot = true;

  DBObjectAdapter.boot();

  DBObjectAdapter.registerAdapter([
    'object.directory',
    'obj.dir',
  ], DBObjectDirectoryAdapter, _instantiate);
}