You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
# !/usr/bin/env python3
|
|
# -*- encoding : utf-8 -*-
|
|
# @Filename : __init__.py
|
|
# @Software : VSCode
|
|
# @Datetime : 2021/11/04 21:30:46
|
|
# @Author : leo liu
|
|
# @Version : 1.0
|
|
# @Description :
|
|
|
|
from db.base_class import Base
|
|
from db.session import engine
|
|
|
|
from .auth import User, Role, user_role, LoginHistory
|
|
from .menu import Menu, role_menu
|
|
from .chat import ChatHistory, ChatCountDay
|
|
from .settings import Settings
|
|
|
|
Base.metadata.create_all(engine) |