2017-01-16 22:21:11 -05:00
|
|
|
<?php
|
2017-01-17 22:08:48 -05:00
|
|
|
// Router: handles all REST requests to go to their proper place. Common dependency loading also happens here
|
2017-01-17 21:58:57 -05:00
|
|
|
require_once(__DIR__ . '/core/common.php');
|
2017-01-16 22:21:11 -05:00
|
|
|
|
2017-01-17 22:08:48 -05:00
|
|
|
// Returns the URI (or everything after the domain
|
|
|
|
$uri = $_SERVER["REQUEST_URI"];
|
2017-01-17 21:58:57 -05:00
|
|
|
|
2017-01-17 22:08:48 -05:00
|
|
|
//
|