UNPKG

843 BJavaScriptView Raw
1'use strict'
2
3const ns = 'REserve@'
4
5module.exports = {
6 $configuration: Symbol(`${ns}configuration`),
7 $configurationInterface: Symbol(`${ns}configuration.interface`),
8 $configurationRequests: Symbol(`${ns}configuration.requests`),
9 $customPath: Symbol(`${ns}custom.path`),
10 $customCallback: Symbol(`${ns}custom.callback`),
11 $customTimestamp: Symbol(`${ns}custom.timestamp`),
12 $dispatcherEnd: Symbol(`${ns}dispatcher.end`),
13 $handlerMethod: Symbol(`${ns}handler.method`),
14 $handlerSchema: Symbol(`${ns}handler.schema`),
15 $mappingChecked: Symbol(`${ns}mapping.checked`),
16 $mappingMethod: Symbol(`${ns}mapping.method`),
17 $requestPromise: Symbol(`${ns}request.promise`),
18 $requestRedirectCount: Symbol(`${ns}request.redirectCount`),
19 $responseEnded: Symbol(`${ns}response.ended`),
20 $useMiddleware: Symbol(`${ns}use.middleware`)
21}