client initial commit

This commit is contained in:
Ari Yeger
2025-07-15 13:35:27 -04:00
parent 5fc2a1eb24
commit b01e1cd586
25 changed files with 3217 additions and 0 deletions

View File

@ -0,0 +1,6 @@
export interface SecureUser {
username: string;
role?: string;
id?: number;
token?: string;
}