cx.hrl 395 B

123456789101112
  1. -ifndef(NITRO_CX).
  2. -define(NITRO_CX, true).
  3. %-record(cx, { handlers=[], actions=[], req=[], module=[], lang=[], path=[],
  4. % session=[], token=[], formatter=bert, params=[], 'node'=[],
  5. % client_pid=[], state=[], from=[], vsn = [] }).
  6. % cx from n2z
  7. -record(cx, { handlers, actions, req, module, lang, path, session, formatter=false, params, form, state=[] }).
  8. -endif.