- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot
More file actions
Latest commit
14 lines (10 loc) · 293 Bytes
/
Copy pathbot
File metadata and controls
14 lines (10 loc) · 293 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env php
<?php
require__DIR__.'/vendor/autoload.php';
useConsole\Setup;
useConsole\SlashCommands;
useSymfony\Component\Console\Application;
$application = newApplication();
$application->add(newSetup(null));
$application->add(newSlashCommands(null));
$application->run();