dumbo/examples/text/index.php
2024-09-08 09:24:05 +01:00

14 lines
216 B
PHP

<?php
require __DIR__ . "/vendor/autoload.php";
use Dumbo\Dumbo;
$app = new Dumbo();
$app->get("/", function ($context) {
return $context->text("This is a plain text response from Dumbo.");
});
$app->run();