From d76a1305e7c8a129ed2d38fa89967fda01163569 Mon Sep 17 00:00:00 2001 From: "Wesley F. Young" Date: Wed, 4 Sep 2024 10:06:09 +0800 Subject: [PATCH] chore: optimize import --- src/onebot/action/OB11Response.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onebot/action/OB11Response.ts b/src/onebot/action/OB11Response.ts index 2f7f4deb..3fecfbb4 100644 --- a/src/onebot/action/OB11Response.ts +++ b/src/onebot/action/OB11Response.ts @@ -1,6 +1,6 @@ import { OB11Return } from '../types'; -import { isNull } from '../../common/helper'; +import { isNull } from '@/common/helper'; export class OB11Response { static res(data: T, status: string, retcode: number, message: string = ''): OB11Return {