rework structure

added Router
added .htaccess
removed API-Module => is not used
renamed batch to CRON
This commit is contained in:
Maurice Grönwoldt 2020-09-10 22:47:58 +02:00
commit c33bb4cb3a
47 changed files with 1160 additions and 670 deletions

12
src/Venom/Core/Module.php Normal file
View file

@ -0,0 +1,12 @@
<?php
namespace Venom\Core;
interface Module
{
public function register(): bool;
public function init(): void;
}