13 lines
472 B
TypeScript
13 lines
472 B
TypeScript
/** 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. */
|
|
export const telemetryService = {
|
|
async sendLocation(_data: any) {
|
|
// No-op: telemetry via Supabase Realtime can be implemented in v3
|
|
return null
|
|
},
|
|
async getDriverLocation(_driverId: string) {
|
|
return null
|
|
}
|
|
}
|