mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2025-06-16 02:37:19 +08:00
19 lines
432 B
JavaScript
19 lines
432 B
JavaScript
export function success(resp, data, statusCode) {
|
|
resp.status(statusCode || 200).json({
|
|
status: 'success',
|
|
data,
|
|
});
|
|
}
|
|
|
|
export function failed(resp, error, statusCode) {
|
|
resp.status(statusCode || 500).json({
|
|
status: 'failed',
|
|
error: {
|
|
code: error.code,
|
|
type: error.type,
|
|
message: error.message,
|
|
details: error.details,
|
|
},
|
|
});
|
|
}
|