feat: adding docuemntation

This commit is contained in:
akhdanre 2025-05-24 14:13:34 +07:00
parent 155e74678f
commit 9c1793088a
2 changed files with 839 additions and 110 deletions

View File

@ -17,8 +17,10 @@ def user_history(
@history_blueprint.route("/detail/<answer_id>", methods=["GET"]) @history_blueprint.route("/detail/<answer_id>", methods=["GET"])
@inject @inject
def user_detail_history( def user_detail_history(
answer_id, controller: HistoryController = Provide[Container.history_controller] answer_id: str,
controller: HistoryController = Provide[Container.history_controller],
): ):
print(answer_id)
return controller.get_detail_quiz_history(answer_id) return controller.get_detail_quiz_history(answer_id)

File diff suppressed because it is too large Load Diff