__init__.py 464 Bytes
Newer Older
Weizhi Cui's avatar
Weizhi Cui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
# @Version     : Python 3.11.4
# @Software    : Sublime Text 4
# @Author      : StudentCWZ
# @Email       : StudentCWZ@outlook.com
# @Date        : 2023/10/28 22:29
# @File        : __init__.py.py
# @Description :
"""

from flask import Flask

from .user import register_user_views
崔为之's avatar
崔为之 committed
16
from .log import register_log_views
Weizhi Cui's avatar
Weizhi Cui committed
17 18 19 20


def init_views(app: Flask) -> None:
    register_user_views(app)
崔为之's avatar
崔为之 committed
21
    register_log_views(app)