server creation

This commit is contained in:
Fran Jurmanović
2025-09-18 01:34:16 +02:00
parent b7999b02e8
commit b0ee67c2be
21 changed files with 1542 additions and 82 deletions

View File

@@ -3,6 +3,7 @@ import { User } from '@/lib/types';
export interface SessionData {
token?: string;
openToken?: string;
user?: User;
}