File: commands.py

package info (click to toggle)
python-snoo 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: python: 685; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from enum import StrEnum


class SnooCommand(StrEnum):
    START_SNOO = "start_snoo"
    GO_TO_STATE = "go_to_state"
    SET_WEANING = "set_weaning"
    SET_STICKY_WHITE_NOISE = "set_sticky_white_noise"
    SEND_STATUS = "send_status"
    CUSTOM_GET_HISTORY = "custom_get_history"