aboutsummaryrefslogtreecommitdiff
path: root/routes/index.php
blob: a5e66a864cd2deddedcd900e17ecb076a060c27c (plain)
1
2
3
4
5
6
7
8
<?php

function GET() {
    $resp = new App\XMLResponse;
    $content = $resp->doc->addChild('content');
    $content->addChild('p', 'Welcome to Pleasant SSO!');
    $resp->send();
}