9 lines
127 B
PHP
9 lines
127 B
PHP
<?php
|
|
namespace EveAI\Chat;
|
|
|
|
interface Loadable {
|
|
/**
|
|
* Initialize the component
|
|
*/
|
|
public function init();
|
|
} |