index.php 244 B

123456789101112
  1. <?php
  2. use Flowdat\Stats\App\Listener\StatsConsumerListener;
  3. require __DIR__ . '/vendor/autoload.php';
  4. $listener = new StatsConsumerListener();
  5. try {
  6. $listener->run();
  7. } catch (Exception $e) {
  8. throw new Exception($e->getMessage());
  9. }