gastrodata/index.php
2020-08-09 14:51:57 +02:00

13 lines
178 B
PHP

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