MaxKB/apps/common/models/handle/impl/default_base_model_handle.py
2024-07-22 18:52:56 +08:00

15 lines
302 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding=utf-8
"""
@project: MaxKB
@Author
@file default_base_model_handle.py
@date2024/7/22 17:06
@desc:
"""
from common.models.handle.base_handle import IBaseModelHandle
class DefaultBaseModelHandle(IBaseModelHandle):
def get_model_dict(self):
return {}