Add cache interface, factory, and basic in-mem implementation

This commit is contained in:
2021-03-09 10:16:27 -06:00
parent 42d9cc101f
commit 088fdfb1ef
5 changed files with 138 additions and 0 deletions

View File

@@ -59,6 +59,10 @@ export * from './service/HTTPServer'
export * from './service/Routing'
export * from './service/Middlewares'
export * from './support/cache/Cache'
export * from './support/cache/MemoryCache'
export * from './support/cache/CacheFactory'
export * from './views/ViewEngine'
export * from './views/ViewEngineFactory'
export * from './views/PugViewEngine'