Lorraxs
2b8448e1be
deleted: main.obf.lua new file: server/utils.lua modified: web/public/assets/bg.png modified: web/src/types/redux.type.ts modified: web/src/utils/fetchNui.ts modified: web/src/utils/misc.ts
13 lines
202 B
Lua
13 lines
202 B
Lua
function Response(isSuccess, errorMessage, data)
|
|
if not isSuccess then
|
|
return {
|
|
status = "error",
|
|
data = errorMessage
|
|
}
|
|
end
|
|
return {
|
|
status = "ok",
|
|
data = data
|
|
}
|
|
end
|