File size: 175 Bytes
8238b08
 
 
 
 
 
1
2
3
4
5
6
from abc import ABC,abstractmethod
from pandas import DataFrame
class Backend(ABC):
    @abstractmethod
    def on_submit_button_press(self,query:str)->DataFrame:
        pass