mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 18:32:48 +00:00
20 lines
367 B
Python
20 lines
367 B
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: base_parse_qa_handle.py
|
||
@date:2024/5/21 14:56
|
||
@desc:
|
||
"""
|
||
from abc import ABC, abstractmethod
|
||
|
||
|
||
class BaseParseTableHandle(ABC):
|
||
@abstractmethod
|
||
def support(self, file, get_buffer):
|
||
pass
|
||
|
||
@abstractmethod
|
||
def handle(self, file, get_buffer,save_image):
|
||
pass
|