index.php 452 Bytes
<?php
// irul @ 20200515

/**
 * Make sure to activate: always_populate_raw_post_data = -1 in php.ini
 */

// Autoload files using composer
require_once __DIR__ . '/vendor/autoload.php';

// Use this namespace
use Steampixel\Route;

// Add your first route
Route::add('/', function () {
    echo 'Welcome :-)';
});

Route::add('/samsat-banten', function () {
    new SamsatBanten();
}, 'post');

// Run the router
$baseUrl = '/';
Route::run($baseUrl);