1 |
fa348e33
|
Vincent Le Goff
|
"""Package containing the sharp script."""
|
2 |
|
|
|
3 |
|
|
from sharp.function import Function
|
4 |
7ff49951
|
Vincent Le Goff
|
from sharp.functions.macro import Macro
|
5 |
44c0b6ab
|
Vincent Le Goff
|
from sharp.functions.play import Play
|
6 |
fa348e33
|
Vincent Le Goff
|
from sharp.functions.say import Say
|
7 |
f6bb9547
|
Vincent Le Goff
|
from sharp.functions.trigger import Trigger
|
8 |
11d4f23d
|
Vincent Le Goff
|
from sharp.functions.tts import TTS
|
9 |
fa348e33
|
Vincent Le Goff
|
|
10 |
|
|
FUNCTIONS = {
|
11 |
7ff49951
|
Vincent Le Goff
|
"macro": Macro,
|
12 |
44c0b6ab
|
Vincent Le Goff
|
"play": Play,
|
13 |
fa348e33
|
Vincent Le Goff
|
"say": Say,
|
14 |
f6bb9547
|
Vincent Le Goff
|
"trigger": Trigger,
|
15 |
11d4f23d
|
Vincent Le Goff
|
"tts": TTS,
|
16 |
|
|
} |