Soshot/app/Controllers/Home.php

17 lines
264 B
PHP
Raw Normal View History

2023-06-21 11:42:36 +02:00
<?php
namespace App\Controllers;
use App\Utils\Hmac;
class Home {
public function index() {
ob_start();
require __DIR__ . '/../../tpl/home.php';
$content = ob_get_contents();
ob_end_clean();
return $content;
}
}