aboutsummaryrefslogtreecommitdiff
path: root/routes/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.php')
-rw-r--r--routes/index.php8
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();
+}