mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 01:06:19 +00:00
15 lines
248 B
Python
15 lines
248 B
Python
from . import BaseEngine
|
|
|
|
|
|
class NoneEngine(BaseEngine):
|
|
num_options = 0
|
|
name = "None"
|
|
description = "No engine selected"
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
@classmethod
|
|
def get_options(cls):
|
|
return []
|