diff options
Diffstat (limited to 'actions/voice.py')
| -rw-r--r-- | actions/voice.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actions/voice.py b/actions/voice.py new file mode 100644 index 0000000..fe42d05 --- /dev/null +++ b/actions/voice.py | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | class voice: | ||
| 2 | |||
| 3 | def __init__(self): | ||
| 4 | self = [] | ||
| 5 | |||
| 6 | def getAction(self, data): | ||
| 7 | input = data.split(' ') | ||
| 8 | return 'MODE ' + input[5] + ' +v ' + input[6] | ||