$app->get('/', 'App\Controllers\UserController:listUsers');
class UserController {
protected $container;
public function __construct($container) {
$this->container = $container;
}
public function listUsers($request, $response){
return $this->container->view->render($response, 'home.twig');
}
}