Files
kiri-core/Console/ICommand.php
T

13 lines
82 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
2020-09-03 00:15:57 +08:00
namespace Console;
2020-08-31 01:27:08 +08:00
interface ICommand
{
public function handler();
}