mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
16 lines
258 B
Python
16 lines
258 B
Python
# coding=utf-8
|
||
"""
|
||
@project: MaxKB
|
||
@Author:虎
|
||
@file: base_handle.py
|
||
@date:2024/7/22 17:02
|
||
@desc:
|
||
"""
|
||
from abc import ABC, abstractmethod
|
||
|
||
|
||
class IBaseModelHandle(ABC):
|
||
@abstractmethod
|
||
def get_model_dict(self):
|
||
pass
|