<?php

class ModuleConfig extends AppModule
{
  function __construct(System $System)
  {
    parent::__construct($System);
    $this->Name = 'Config';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPLv3';
    $this->Description = 'Configuration support for other modules';
    $this->Dependencies = array('System');
    $this->Revision = 1;
    $this->SystemModule = true;
  }

  function GetModels(): array
  {
    return array();
  }

  function DoStart(): void
  {
  }
}
