diff options
| author | seth <[email protected]> | 2023-01-24 18:28:18 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-24 22:03:37 -0500 |
| commit | 5deaf0cc1580e13c48f3dbc7ff4c76d35640fcfc (patch) | |
| tree | 5c015a1a43bb6fc79c5ec4e264111abc006c8dd4 /src/teawie_bot/__init__.py | |
| parent | 95961b27a88230a22a74ae9de6cdd60d3beda95d (diff) | |
feat: moyaiBot -> teawieBot
Diffstat (limited to 'src/teawie_bot/__init__.py')
| -rw-r--r-- | src/teawie_bot/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/teawie_bot/__init__.py b/src/teawie_bot/__init__.py new file mode 100644 index 0000000..e3b5d8f --- /dev/null +++ b/src/teawie_bot/__init__.py @@ -0,0 +1,9 @@ +import os + +from .bot import bot + +TOKEN = os.getenv("TOKEN") + + +def main(): + bot.run(TOKEN) |
