1// one handler off the shelf
2import handler from './routes/tokens';
3
4// several at once
5import { verify, refresh } from './auth';
6
7// the whole namespace, aliased
8import * as policy from './policy';
9
10// the default plus two named
11// members together
12import client, { withScope,
13withQuota } from './client';
14
15// one handler off the shelf
16import rotate from './routes/keys';
17
18// several at once
19import { stamp, audit } from './trail';
20
21// the whole namespace, aliased
22import * as shape from './shape';
23
24// the default plus two named