Changed backend to work with supabase instead of sqlite

This commit is contained in:
Harivansh Rathi 2024-11-20 19:56:48 -05:00
parent ef8f959f57
commit f1ca72a782
10 changed files with 362 additions and 784 deletions

View file

@ -1,6 +1,7 @@
export interface Habit {
id: number;
name: string;
created_at: string;
best_streak: number;
completedDates: string[];
bestStreak: number;
}