gastrodata/index.php

13 lines
150 B
PHP

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