Skip to content

Commit

Permalink
feat: enable janet on pesto (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldy505 authored Jan 22, 2024
1 parent a4e80a6 commit 816553a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/services/pesto/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export function register(bot) {
bot.command("clisp", (context) => executeCode(context, "clisp", "Common Lisp"));
bot.command("dotnet", (context) => executeCode(context, "dotnet", ".NET"));
bot.command("go", (context) => executeCode(context, "go", "Go"));
bot.command("janet", (context) => executeCode(context, "janet", "Janet"));
bot.command("java", (context) => executeCode(context, "java", "Java"));
bot.command("js", (context) => executeCode(context, "js", "Javascript"));
bot.command("julia", (context) => executeCode(context, "julia", "Julia"));
Expand Down Expand Up @@ -120,6 +121,10 @@ export function register(bot) {
command: "go",
description: "Execute Go code"
},
{
command: "janet",
description: "Execute Janet code"
},
{
command: "java",
description: "Execute Java code"
Expand Down

0 comments on commit 816553a

Please sign in to comment.