import { ModelWAF } from "@/types" import { fetcher, FetcherMethod } from "./api" export const deleteWAF = async (ip: string[]): Promise => { return fetcher(FetcherMethod.POST, '/api/v1/batch-delete/waf', ip); } export const getWAFList = async (): Promise => { return fetcher(FetcherMethod.GET, '/api/v1/waf', null); }