You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-07-02 22:36:54 +02:00
9 lines
149 B
Python
9 lines
149 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class Control(ABC):
|
|
|
|
@abstractmethod
|
|
def start(self):
|
|
# entry point of the control
|
|
pass
|