2023-12-03 22:10:18 +04:00
|
|
|
<?php # -*- coding: utf-8 mode: php -*- vim:sw=2:sts=2:et:ai:si:sta:fenc=utf-8
|
2024-04-04 22:21:20 +04:00
|
|
|
require(__DIR__.'/../../vendor/autoload.php');
|
2023-12-03 22:10:18 +04:00
|
|
|
|
|
|
|
use nur\cli\Application;
|
|
|
|
use nur\msg;
|
|
|
|
|
|
|
|
Application::run(new class extends Application {
|
|
|
|
private $args;
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
msg::info("Sélection du profil ".self::profile());
|
|
|
|
Txx("args", $this->args);
|
|
|
|
}
|
|
|
|
});
|