gastrodata/index.php

17 lines
238 B
PHP
Raw Permalink Normal View History

2020-08-02 12:07:03 +00:00
<?php
define("GastroData", true);
2020-08-09 12:51:57 +00:00
include("Session.class.php");
include("Route.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
2020-08-20 18:37:49 +00:00
Route::add('accounts/register/', function() {
}, "post");
Route::run('/');
2020-08-02 12:07:03 +00:00
?>