Commit 62af0a25 authored by 崔为之's avatar 崔为之 💪🏽

Update project

parent 26fd5be2
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
# @Author : StudentCWZ # @Author : StudentCWZ
# @Email : StudentCWZ@outlook.com # @Email : StudentCWZ@outlook.com
# @Date : 2023/10/28 22:29 # @Date : 2023/10/28 22:29
# @File : __init__.py.py # @File : __init__.py
# @Description : # @Description : Initializes the views for the Flask application.
""" """
from flask import Flask from flask import Flask
...@@ -16,4 +16,13 @@ from .log import register_log_views ...@@ -16,4 +16,13 @@ from .log import register_log_views
def init_views(app: Flask) -> None: def init_views(app: Flask) -> None:
"""
Initializes views by registering the log views with the Flask application.
Args:
app (Flask): The Flask application.
Returns:
None
"""
register_log_views(app) register_log_views(app)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment