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

10 lines
228 B
TypeScript
Raw Normal View History

/** analyticsService — stub. Analytics via Supabase can be implemented in v3 */
2026-02-21 09:53:31 -05:00
export const analyticsService = {
2026-02-26 20:58:10 -05:00
logEvent(_event: any) {
// no-op
2026-02-21 09:53:31 -05:00
},
async getDashboardStats() {
return null
2026-02-21 09:53:31 -05:00
}
}