Skip to content

Commit

Permalink
fix syntax error due to assert
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarTwilight committed May 15, 2024
1 parent a8742a9 commit fd9053b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
*/
import {CookieJar} from 'tough-cookie';
import {WebhookClient} from 'discord.js';
import config from './config.json' assert {type: 'json'};
import config from './config.json' with {type: 'json'};
import got from 'got';
import {parse} from 'node-html-parser';
import pkg from './package.json' assert {type: 'json'};
import pkg from './package.json' with {type: 'json'};
import process from 'process';
import {writeFile} from 'fs/promises';

Expand Down

0 comments on commit fd9053b

Please sign in to comment.