From 2d9235070856c0a5032ddf47f7b1dc7cc5cceb60 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 25 Jul 2024 00:19:44 -0700 Subject: refactor(Database): separate providers --- src/lib/Database/user.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/lib/Database/user.ts (limited to 'src/lib/Database/user.ts') diff --git a/src/lib/Database/user.ts b/src/lib/Database/user.ts deleted file mode 100644 index df68bc91..00000000 --- a/src/lib/Database/user.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { type AniListAuthorisation } from '$lib/Data/AniList/identity'; -import Dexie, { type Table } from 'dexie'; - -export interface User { - id: number; - user: AniListAuthorisation; - lastNotificationID: number | null; -} - -export class UserDatabase extends Dexie { - users: Table; - - constructor() { - super('users'); - this.version(1).stores({ - users: 'id, user, lastNotificationID' - }); - - this.users = this.table('users'); - } -} - -export const database = new UserDatabase(); -- cgit v1.2.3