venom/src/Venom/Core/Module.php

12 lines
125 B
PHP
Raw Normal View History

2020-03-28 20:11:51 +01:00
<?php
namespace Venom\Core;
2020-03-28 20:11:51 +01:00
interface Module
{
public function register(): bool;
public function init(): void;
}