10 lines
207 B
Python
10 lines
207 B
Python
"""Command safety monitoring for Clover."""
|
|
|
|
|
|
def get_command_status():
|
|
"""Return command safety status."""
|
|
return {
|
|
"safety_available": True,
|
|
"safety": {"violation_count": 0},
|
|
}
|