15 lines
254 B
Python
15 lines
254 B
Python
|
|
# coding=utf-8
|
|||
|
|
"""
|
|||
|
|
@project: MaxKB
|
|||
|
|
@Author:虎虎
|
|||
|
|
@file: __init__.py.py
|
|||
|
|
@date:2025/11/5 14:53
|
|||
|
|
@desc:
|
|||
|
|
"""
|
|||
|
|
import os
|
|||
|
|
|
|||
|
|
if os.environ.get('SERVER_NAME', 'web') == 'local_model':
|
|||
|
|
from .model import *
|
|||
|
|
else:
|
|||
|
|
from .web import *
|