mirror of
https://github.com/infinition/Bjorn.git
synced 2025-12-06 06:11:46 +00:00
21 lines
341 B
Python
21 lines
341 B
Python
#Test script to add more actions to BJORN
|
|
|
|
from rich.console import Console
|
|
from shared import SharedData
|
|
|
|
b_class = "IDLE"
|
|
b_module = "idle_action"
|
|
b_status = "idle_action"
|
|
b_port = None
|
|
b_parent = None
|
|
|
|
console = Console()
|
|
|
|
class IDLE:
|
|
def __init__(self, shared_data):
|
|
self.shared_data = shared_data
|
|
|
|
|
|
|
|
|