Files
SIB/frontend/src/services/telemetryService.ts

13 lines
472 B
TypeScript
Raw Normal View History

/** telemetryService Previously sent GPS data to the Python backend.
* Now it's a no-op stub since we don't have a custom backend.
* Realtime GPS tracking can be implemented via Supabase Realtime in the future. */
2026-02-21 09:53:31 -05:00
export const telemetryService = {
async sendLocation(_data: any) {
// No-op: telemetry via Supabase Realtime can be implemented in v3
return null
2026-02-21 09:53:31 -05:00
},
async getDriverLocation(_driverId: string) {
return null
2026-02-21 09:53:31 -05:00
}
}