👔 (necktie) add logic to store the cookies

This commit is contained in:
2025-10-12 00:12:42 +07:00
parent 94f6f0780c
commit 273db57e7b
4 changed files with 29 additions and 3 deletions

View File

@ -0,0 +1,6 @@
export interface CallbackFromBackend<T> {
success: boolean;
status: number;
message: string;
data?: T;
}