diff options
Diffstat (limited to 'src/moyaiBot/__init__.py')
| -rw-r--r-- | src/moyaiBot/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/moyaiBot/__init__.py b/src/moyaiBot/__init__.py new file mode 100644 index 0000000..dad1ed9 --- /dev/null +++ b/src/moyaiBot/__init__.py @@ -0,0 +1,8 @@ +import os +from .moyaiBot import moyai + +TOKEN = os.getenv("TOKEN") + + +def main(): + moyai.run(TOKEN) |
