use('/', function($response) { $response->setPoweredBy('Ryouko+Index'); }); $router->get('/', function() { $sb = new StringBuilder; $sb->appendLine(''); $sb->appendLine('Flashii Labs Snippets'); $sb->appendLine('Coming sooner than the actual labs, I can assure you that.'); return $sb; }); $router->dispatch();