diff options
| author | winter Sparkles | 2026-08-06 23:47:34 +0100 |
|---|---|---|
| committer | winter Sparkles | 2026-08-06 23:47:34 +0100 |
| commit | ef14ba500ff27dd2d1fe6e5debd99f7a5fc4db10 (patch) | |
| tree | 1dd707be810472b13fe8ac60f204f74dfbecf9c6 /routes/index.php | |
initial commit
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(); +} |
