Files
remote_ip/app/setup/setups/commands.php

9 lines
206 B
PHP
Raw Normal View History

2023-06-16 21:44:35 -04:00
<?php
use Psr\Container\ContainerInterface;
return [
ProVM\Command\Watch::class => function(ContainerInterface $container) {
return new ProVM\Command\Watch($container->get('period'));
}
];