diff options
Diffstat (limited to 'routes/index.php')
| -rw-r--r-- | routes/index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routes/index.php b/routes/index.php new file mode 100644 index 0000000..a5e66a8 --- /dev/null +++ b/routes/index.php @@ -0,0 +1,8 @@ +<?php + +function GET() { + $resp = new App\XMLResponse; + $content = $resp->doc->addChild('content'); + $content->addChild('p', 'Welcome to Pleasant SSO!'); + $resp->send(); +} |
