Coverage for src/kwai/frontend/apps/__init__.py: 0%

7 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2024-01-01 00:00 +0000

1"""Package for defining the routes for all frontend applications.""" 

2 

3from kwai.frontend.apps._admin import router as admin_router 

4from kwai.frontend.apps._auth import router as auth_router 

5from kwai.frontend.apps._author import router as author_router 

6from kwai.frontend.apps._club import router as club_router 

7from kwai.frontend.apps._coach import router as coach_router 

8from kwai.frontend.apps._portal import router as portal_router 

9 

10 

11application_routers = [ 

12 admin_router, 

13 auth_router, 

14 author_router, 

15 club_router, 

16 coach_router, 

17 portal_router, 

18]