dumbo/examples/text/index.php
2024-09-05 10:04:59 +01:00

14 lines
205 B
PHP

<?php
require "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();