🩹 (simple-fix) fix handler error request

This commit is contained in:
2025-10-07 11:59:22 +07:00
parent 171862aa3a
commit f13f1ccaf1
5 changed files with 51 additions and 17 deletions

View File

@ -0,0 +1,7 @@
export type ServerRequestCallback = {
success: boolean;
status: number;
text: { message: string };
data?: any;
error?: unknown;
};