1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

add node: to node "core modules" imports

This commit is contained in:
Leibale
2023-09-18 15:03:07 -04:00
parent 3fa54fef58
commit 266d635a60
495 changed files with 528 additions and 528 deletions

View File

@@ -1,6 +1,6 @@
import { createClient } from 'redis-v3';
import { once } from 'events';
import { promisify } from 'util';
import { once } from 'node:events';
import { promisify } from 'node:util';
export default async (host) => {
const client = createClient({ host }),