Fix naming bug in audioController

This commit is contained in:
Logan Cusano
2023-03-26 00:47:39 -04:00
parent 7c9be47b64
commit 184458608d
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ const log = new ModuleDebugBuilder("bot", "executeConsoleCommand");
const execCommand = promisify(exec);
export async function executeAsyncConsoleCommand(consoleCommand) {
export default async function executeAsyncConsoleCommand(consoleCommand) {
// Check to see if the command is a real command
// TODO needs to be improved
const acceptableCommands = [ "arecord -L" ];