From b696d4a9dd8fb85fd9d9f32e097e319477f04bd5 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 23 Aug 2020 13:56:15 -0500 Subject: [PATCH] add exports to default module --- TODO.txt | 1 - lib/src/module.ts | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/TODO.txt b/TODO.txt index 07a5f9a..ca36f0d 100644 --- a/TODO.txt +++ b/TODO.txt @@ -5,7 +5,6 @@ uploads & universal path CLI - view routes, template generation, start server, directives, output, args request level error handler develop/prod/debug modes -logger scope (e.g. logger.verbose()) favicon utility - root, path, is_windows, is_linux, is_mac authentication - user/session, oauth, jwt, &c. diff --git a/lib/src/module.ts b/lib/src/module.ts index 4d67f9d..0710bce 100644 --- a/lib/src/module.ts +++ b/lib/src/module.ts @@ -1,3 +1,9 @@ export { default as Scaffolding } from './unit/Scaffolding.ts' export { default as Application } from './lifecycle/Application.ts' -export { default as SessionModel } from './http/session/SessionModel.ts' \ No newline at end of file +export { default as SessionModel } from './http/session/SessionModel.ts' +export { env } from './unit/Scaffolding.ts' +export { default as Controller } from './http/Controller.ts' +export { Request } from './http/Request.ts' +export * from './http/response/helpers.ts' +export { default as Middleware } from './http/Middleware.ts' +export { RouterDefinition } from './http/type/RouterDefinition.ts'