From 4edd2c941d0270cd20bccf33029a9d72b92f347e Mon Sep 17 00:00:00 2001 From: Maple Date: Mon, 5 Feb 2024 11:23:23 +0700 Subject: [PATCH] fix: using Tengo as defined on pesto repository (#222) --- src/services/pesto/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/pesto/index.js b/src/services/pesto/index.js index 07ccf3f..fd2fd4f 100644 --- a/src/services/pesto/index.js +++ b/src/services/pesto/index.js @@ -96,7 +96,7 @@ export function register(bot) { bot.command("python", (context) => executeCode(context, "python", "Python")); bot.command("ruby", (context) => executeCode(context, "ruby", "Ruby")); bot.command("sqlite3", (context) => executeCode(context, "sqlite3", "SQLite3")); - bot.command("tengo", (context) => executeCode(context, "tengo", "TenGo")); + bot.command("tengo", (context) => executeCode(context, "tengo", "Tengo")); bot.command("ts", (context) => executeCode(context, "ts", "Typescript")); bot.command("v", (context) => executeCode(context, "v", "V")); bot.command("brainfuck", (context) => executeCode(context, "brainfuck", "Brainfuck"));