SiteWeaver_CMS/public/index.php
Funky Waddle 42df7cac0f
Some checks are pending
CI / build_and_test (push) Waiting to run
add file-level comments
2026-09-10 14:36:00 -05:00

17 lines
325 B
PHP

<?php
/**
* File: public/index.php
*
* Author: Funky Waddle
* Date: 2026-09-10
*
* Purpose:
* Front controller entry point that outputs a simple message.
*/
declare(strict_types=1);
$container = require __DIR__ . '/../config/bootstrap.php';
// Placeholder: output a simple message.
echo "SiteWeaverCMS running.";