summaryrefslogtreecommitdiff
path: root/scripts/core/bot.php
blob: b3a7688e77958db0e6293426230146eba9b619e7 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

require __DIR__.'/../../vendor/autoload.php';

use FBeans\Beansbot\Bot\Application;

$app = (new Application)
    ->fromStdin()
    ->toConsole()
    ->run();