Revision 13e86181
Added by Vincent Le Goff over 4 years ago
src/sharp/__init__.py | ||
---|---|---|
1 | 1 |
"""Package containing the sharp script.""" |
2 | 2 |
|
3 | 3 |
from sharp.function import Function |
4 |
from sharp.functions.alias import Alias |
|
4 | 5 |
from sharp.functions.macro import Macro |
5 | 6 |
from sharp.functions.play import Play |
6 | 7 |
from sharp.functions.say import Say |
... | ... | |
8 | 9 |
from sharp.functions.tts import TTS |
9 | 10 |
|
10 | 11 |
FUNCTIONS = { |
12 |
"alias": Alias, |
|
11 | 13 |
"macro": Macro, |
12 | 14 |
"play": Play, |
13 | 15 |
"say": Say, |
Also available in: Unified diff
Add the aliases