MaxKB/apps/common/database_model_manage/handle/base_handle.py
shaohuzhang1 04642eb497
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
feat: authentication
2025-04-15 20:37:38 +08:00

16 lines
261 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 base_handle.py
@date2025/4/15 11:16
@desc:
"""
from abc import ABC, abstractmethod
class IBaseModelHandle(ABC):
@abstractmethod
def get_model_dict(self):
pass