mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
10 lines
170 B
Python
10 lines
170 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
import gradio as gr
|
||
|
|
|
||
|
|
class BaseEngine(ABC):
|
||
|
|
options: list
|
||
|
|
name: str
|
||
|
|
description: str
|
||
|
|
|
||
|
|
def __init__(self):
|
||
|
|
pass
|