diff options
Diffstat (limited to 'src/discord/responses.ts')
| -rw-r--r-- | src/discord/responses.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/discord/responses.ts b/src/discord/responses.ts index da72967..4dcc777 100644 --- a/src/discord/responses.ts +++ b/src/discord/responses.ts @@ -1,4 +1,4 @@ -import type { DiscordResponse } from './interfaces.ts'; +import type { DiscordResponse } from "./interfaces.ts"; export class JSONResponse extends Response { constructor(body: DiscordResponse | { error: string }, init?: ResponseInit) { @@ -6,7 +6,7 @@ export class JSONResponse extends Response { init = init || { headers: { - 'content-type': 'application/json;charset=UTF-8', + "content-type": "application/json;charset=UTF-8", }, }; |