<?php
namespace App\Controller;
use Ardent\Undercurrent\Attribute\Route;
use Ardent\Undercurrent\Http\GenericResponse;
use Ardent\Undercurrent\Http\ResponseInterface;
class BaseController
{
#[Route('/hello')]
public function HelloWorld(): ResponseInterface
return new GenericResponse('Hello World!');
}