gastrodata/index.php

13 lines
150 B
PHP
Raw Normal View History

2020-08-02 12:07:03 +00:00
<?php
define("GastroData", true);
2020-08-02 12:07:03 +00:00
include("Router.class.php");
2020-08-02 12:07:03 +00:00
Route::add('/',function(){
include("views/index.php");
});
2020-08-02 12:07:03 +00:00
Route::run('/');
2020-08-02 12:07:03 +00:00
?>