still wip

This commit is contained in:
VersusTune 2020-03-28 20:11:51 +01:00
commit 9be884c8e4
12 changed files with 261 additions and 39 deletions

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

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