added lib/web/index.ts to let others import all the routers from one place

Signed-off-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
Philip Molares 2020-04-12 20:51:27 +02:00 committed by David Mehren
parent d4dc9a4046
commit 823bd5e432
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

8
lib/web/index.ts Normal file
View file

@ -0,0 +1,8 @@
import { AuthRouter } from './auth'
import { BaseRouter } from './baseRouter'
import { HistoryRouter } from './historyRouter'
import { ImageRouter } from './imageRouter'
import { NoteRouter } from './note/router'
import { StatusRouter } from './statusRouter'
export { AuthRouter, BaseRouter, HistoryRouter, ImageRouter, NoteRouter, StatusRouter }