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

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