chore(lint): no-named-as-default use named imports for ws and openai

This commit is contained in:
Mohamed Boudra
2026-04-24 07:15:26 +07:00
parent 31d24ed216
commit 38efad7db2
12 changed files with 12 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ import "dotenv/config";
import { writeFile, mkdir } from "node:fs/promises";
import path from "node:path";
import { fileURLToPath } from "node:url";
import OpenAI from "openai";
import { OpenAI } from "openai";
function requireEnv(name: string): string {
const value = process.env[name];