Files
remote_ip/app/setup/setups/commands.php
2023-06-16 21:44:35 -04:00

9 lines
206 B
PHP

<?php
use Psr\Container\ContainerInterface;
return [
ProVM\Command\Watch::class => function(ContainerInterface $container) {
return new ProVM\Command\Watch($container->get('period'));
}
];