This commit is contained in:
2024-07-29 15:57:20 +03:00
parent 95f56a04d3
commit 200763725e
34 changed files with 936 additions and 72 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace kernel\console\controllers;
use kernel\console\ConsoleController;
class MainController extends ConsoleController
{
public function indexAction(): void
{
$this->out->r("Привет", "green");
}
}