10 lines
193 B
Python
10 lines
193 B
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
from .index import router
|
|
from . import attempts, questions
|
|
|
|
router.include_router(questions.router)
|
|
router.include_router(attempts.router)
|
|
|
|
__all__ = ["router"]
|