mirror of
https://github.com/MarkParker5/STARK.git
synced 2024-11-24 08:12:13 +02:00
585aefa5f4
new Controls flow in progress
17 lines
260 B
Python
17 lines
260 B
Python
from abc import ABC, abstractmethod
|
|
from General import Singleton
|
|
|
|
class Control(Singleton):
|
|
|
|
@abstractmethod
|
|
def __init__(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def start(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def stop(self):
|
|
pass
|