blob: 2d12eb698890b5f3f54cdf88312c11ee83edc890 (
plain) (
tree)
|
|
<?php
require_once "class/controller.class.php";
/*
* Root-level controller for Scrott app. This object will delegate the page request to the
* appropriate controller or handle it with an error message page.
*/
class Root extends Controller
{
/*
* Controller implementation
*/
function handle($argv)
{
/* TODO */
}
}
?>
|