implement a non-working version of the app, with no database and no

messages yet
This commit is contained in:
Soph :3 2026-01-02 18:53:48 +02:00
parent 8ba5b8ec90
commit f9c5c1cb36
90 changed files with 2278 additions and 15 deletions

View file

@ -1 +1,22 @@
// place files you want to import through the `$lib` alias in this folder.
export const Status: Record<string, 1|2|3> = {
OFFLINE: 1,
DND: 2,
ONLINE: 3
}
interface InnerData {
id: string
}
export interface Friend extends InnerData {
name: string,
status: 1|2|3,
image: string
}
export interface Group extends InnerData {
name: string
members: number
}
export interface Server extends InnerData {
name: string
image: string
}