-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error messages on discord interaction responses (#16)
* Run `deno task all` Updates Co-Authored-By: Ethan Davidson <[email protected]> * Add error messages to discord interaction response Co-Authored-By: Ethan Davidson <[email protected]> * typo Co-Authored-By: Ethan Davidson <[email protected]> --------- Co-authored-by: Ethan Davidson <[email protected]>
- Loading branch information
1 parent
ee20196
commit 98a2e69
Showing
4 changed files
with
72 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export { | ||
assertEquals, | ||
assertRejects, | ||
} from "https://deno.land/std@0.200.0/assert/mod.ts"; | ||
} from "https://deno.land/std@0.201.0/assert/mod.ts"; | ||
|
||
export { load } from "https://deno.land/std@0.200.0/dotenv/mod.ts"; | ||
export * from "https://deno.land/std@0.200.0/datetime/constants.ts"; | ||
export { load } from "https://deno.land/std@0.201.0/dotenv/mod.ts"; | ||
export * from "https://deno.land/std@0.201.0/datetime/constants.ts"; | ||
export { ulid } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export type { | ||
APIApplicationCommandInteractionDataOption, | ||
|