1 | 'use strict'
|
2 |
|
3 | const ns = 'REserve@'
|
4 |
|
5 | module.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 | $mappingMatch: Symbol(`${ns}mapping.match`),
|
17 | $mappingMethod: Symbol(`${ns}mapping.method`),
|
18 | $requestId: Symbol(`${ns}request.id`),
|
19 | $responseEnded: Symbol(`${ns}response.ended`),
|
20 | $useMiddleware: Symbol(`${ns}use.middleware`)
|
21 | }
|