18 lines
323 B
PHP
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;
|