advent-of-code/2025/index.php

18 lines
323 B
PHP
Raw Normal View History

2025-12-07 21:30:03 -05:00
<?php
require_once __DIR__ . '/vendor/autoload.php';
2025-12-07 23:16:51 -05:00
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;