Dragon-Knight/server/modules/HomeModule.php

11 lines
151 B
PHP
Raw Normal View History

2024-07-11 18:17:51 -05:00
<?php
class HomeModule
{
2024-07-11 20:47:39 -05:00
public static function home()
2024-07-11 18:17:51 -05:00
{
echo 'Welcome to the home module!';
2024-07-11 20:47:39 -05:00
echo 'Your request is: ' . App::$req->uri(0);
2024-07-11 18:17:51 -05:00
}
}