Files
SeaGateway-App/controller/MapController.ts

7 lines
181 B
TypeScript

import { api } from "@/config";
import { API_GET_ALL_BANZONES } from "@/constants";
export async function queryBanzones() {
return api.get<Model.Zone[]>(API_GET_ALL_BANZONES);
}