index.php 318 B

12345678910111213
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | PIMF Application gateway/runner
  5. |--------------------------------------------------------------------------
  6. */
  7. include_once 'app/bootstrap.app.php';
  8. use \Pimf\Application as App;
  9. App::run($_GET, $_POST, $_COOKIE);
  10. App::finish();