From 72812225d4379dab0c52421d111da037e2848994 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 16 Aug 2025 16:07:41 +0800 Subject: [PATCH] =?UTF-8?q?UserApi=20=E7=BB=A7=E6=89=BF=20BaseApi=20?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/UserApi.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/api/UserApi.ts b/src/api/UserApi.ts index e69de29..d99d76e 100644 --- a/src/api/UserApi.ts +++ b/src/api/UserApi.ts @@ -0,0 +1,10 @@ +import BaseApi from "./BaseApi.ts"; + +export default class UserApi extends BaseApi { + override getName(): string { + return "User" + } + override onInit(): void { + + } +} \ No newline at end of file