refactor: use the node: protocol (#6710)

This commit is contained in:
Almeida
2021-10-02 12:40:02 +01:00
committed by GitHub
parent 466e796a1d
commit 531b46c60d
17 changed files with 28 additions and 28 deletions

View File

@@ -1,8 +1,8 @@
'use strict';
const EventEmitter = require('events');
const fs = require('fs');
const path = require('path');
const EventEmitter = require('node:events');
const fs = require('node:fs');
const path = require('node:path');
const { Collection } = require('@discordjs/collection');
const Shard = require('./Shard');
const { Error, TypeError, RangeError } = require('../errors');