Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2021
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.32 KB | None | 0 0
  1. (de jsonResponse (IsError DataCons)
  2.     (httpHead "application/Json" 0)
  3.     (if IsError
  4.         (ht:Out *Chunked
  5.                 (printJson (json-encode (list (cons "status" "error") DataCons))))
  6.       (ht:Out *Chunked
  7.               (printJson (json-encode (list (cons "status" "ok") (cons "errorMsg" NIL) DataCons))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement