2024-01-25 13:01:25 +00:00
|
|
|
#!/usr/bin/env php
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Bouncer\Bouncer;
|
2024-05-16 11:22:34 +00:00
|
|
|
define("APP_ROOT", realpath(__DIR__ . "/bouncer"));
|
2024-01-25 13:01:25 +00:00
|
|
|
require_once APP_ROOT . '/vendor/autoload.php';
|
|
|
|
|
|
|
|
|
|
(new Bouncer())->run();
|