Files
SeaGateway-App/controller/DeviceController.ts
Tran Anh Tuan fd6e07ee24 add maps
2025-10-30 12:34:45 +07:00

7 lines
166 B
TypeScript

import { api } from "@/config";
import { API_GET_GPS } from "@/constants";
export async function fetchGpsData() {
return api.get<Model.GPSResonse>(API_GET_GPS);
}