mirror of
https://github.com/infinition/Bjorn.git
synced 2026-03-19 10:10:24 +00:00
feat: Implement package management utilities with JSON endpoints for listing and uninstalling packages feat: Create plugin management utilities with endpoints for listing, configuring, and installing plugins feat: Develop schedule and trigger management utilities with CRUD operations for schedules and triggers
17 lines
272 B
Python
17 lines
272 B
Python
"""idle.py - No-op placeholder action for when Bjorn has nothing to do."""
|
|
|
|
from shared import SharedData
|
|
|
|
b_class = "IDLE"
|
|
b_module = "idle"
|
|
b_status = "IDLE"
|
|
|
|
|
|
class IDLE:
|
|
def __init__(self, shared_data):
|
|
self.shared_data = shared_data
|
|
|
|
|
|
|
|
|