private async getConfig(): Promise<string> {
const decoder = new TextDecoder("utf-8");
const bytes = await Deno.readFile("./config.sql");
return decoder.decode(bytes);
} private async getConfig(): Promise<string> {
const decoder = new TextDecoder("utf-8");
const bytes = await Deno.readFile("./config.sql");
return decoder.decode(bytes);
}Join the Discord to ask follow-up questions and connect with the community