12 lines
120 B
PHP
12 lines
120 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace Venom;
|
||
|
|
||
|
|
||
|
interface Module
|
||
|
{
|
||
|
public function register(): bool;
|
||
|
|
||
|
public function init(): void;
|
||
|
}
|