v0.0..1
This commit is contained in:
Thomas
2025-10-05 14:58:05 +02:00
parent df30542248
commit a184c31cca
41 changed files with 3439 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
header('Content-Type: text/plain; charset=utf-8');
$log = dirname(__DIR__) . '/data/bot.log';
if (file_exists($log)) {
$content = file_get_contents($log);
if ($content === false) {
echo 'Kunne ikke læse logfilen.';
} else {
echo $content;
}
} else {
echo 'Ingen log endnu.';
}