10 lines
224 B
TypeScript
Executable File
10 lines
224 B
TypeScript
Executable File
/**
|
|
* @module
|
|
* BearMetal Router, for routing HTTP requests with Deno.serve
|
|
*/
|
|
|
|
export { Router } from "./router.ts";
|
|
export { FileRouter } from "./file_router.ts";
|
|
|
|
export type { Handler, Middleware } from "./types.ts";
|