gastrodata/index.php
2020-08-20 20:37:49 +02:00

17 lines
238 B
PHP

<?php
define("GastroData", true);
include("Session.class.php");
include("Route.class.php");
Route::add('/',function(){
include("views/index.php");
});
Route::add('accounts/register/', function() {
}, "post");
Route::run('/');
?>