advent-of-code/2025/index.php
2025-12-07 23:16:51 -05:00

18 lines
323 B
PHP

<?php
require_once __DIR__ . '/vendor/autoload.php';
use Aoc2025\Days\Day1;
use Aoc2025\Services\Template;
$day_1 = new Day1();
$day_1_answer = $day_1->run();
$template = new Template('main.html');
$substitutions = [
'day_1_answer' => $day_1_answer,
];
$response = $template->render($substitutions);
echo $response;