index.php 160 B

123456789101112
  1. <?php
  2. require __DIR__ . '/../vendor/autoload.php';
  3. use FrameworkX\App;
  4. $app = new App();
  5. $app->get('/', \Controllers\HelloController::class);
  6. $app->run();