refactor(api): remove unused network endpoints

This commit is contained in:
2026-07-07 16:29:21 +08:00
parent ab9b227969
commit b5bf81de59
47 changed files with 1 additions and 971 deletions
-11
View File
@@ -1,11 +0,0 @@
"use client";
import type { PaymentVipStatusResponse } from "@/data/dto/payment";
import { getPaymentRepository } from "@/data/repositories/payment_repository";
import type { Result } from "@/utils";
export function getCurrentVipPaymentStatus(): Promise<
Result<PaymentVipStatusResponse>
> {
return getPaymentRepository().getVipStatus();
}