Containerize bot and server in one stack.

This commit is contained in:
GooeyTuxedo
2023-04-11 19:29:41 -07:00
parent 19107543e9
commit e12f518bd7
10 changed files with 83 additions and 30 deletions

View File

@ -1,4 +1,4 @@
const errorMessages = [
export const errorMessages = [
"Uh oh, looks like something went awry! Try !reset to start fresh.",
"Oops, we hit a bump in the road! Give !reset a try to start anew.",
"We've encountered an error, but !reset can help us out! Give it a go.",
@ -21,7 +21,7 @@ const errorMessages = [
"Oopsie daisy! Give !reset a try and we'll start over."
];
const busyResponses = [
export const busyResponses = [
"Sorry about that! Looks like I'm tied up at the moment. Please try again later.",
"Oops, I'm currently busy with something else. Please try again later.",
"Looks like I'm already working on something. Can you try again later?",
@ -42,6 +42,4 @@ const errorMessages = [
"I'm afraid I'm busy with something else at the moment. Can you try again later?",
"Looks like I'm currently engaged with something else. Please try again later.",
"I'm currently unavailable. Can you try again later?"
];
module.exports = { errorMessages, busyResponses};
];