Fix types

This commit is contained in:
wooden_case 2024-05-04 09:56:37 +02:00
parent ac2f47f431
commit 31d3303df0

View file

@ -12,7 +12,7 @@ import { declare_commands, handle_autocomplete, handle_command } from "./lib/com
const log = log_from(import.meta); const log = log_from(import.meta);
const subjects = fs.readFileSync('/modules.conf', 'utf-8').split('\n'); const subjects = new Set(fs.readFileSync('/modules.conf', 'utf-8').split('\n'));
async function main() { async function main() {
const debug_server = Deno.env.get("DEBUG"); const debug_server = Deno.env.get("DEBUG");