File size: 223 Bytes
f38488f
 
 
 
 
 
1
2
3
4
5
6
7
#!/usr/bin/env python3
from src.comm.channel import channel
class Mouth:
    def execute_action(self, action: str):
        print(f"[MOUTH] Manifesting action: {action}")
        channel.publish("action_completed", action)