diff options
| author | seth <[email protected]> | 2022-12-26 03:23:14 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2022-12-26 03:44:17 -0500 |
| commit | d06defd8d7561d90ecbf7cfb4d5e4778a348e98e (patch) | |
| tree | 0054f5b704bfb0f9a21cc6d2626a62a7c1594d3e /src/moyai_bot/__init__.py | |
| parent | e16a396db9aa0ac707654d8f03c0c8a3b05b7c9f (diff) | |
chore: replace flake8 with pylint, refactor, add pre-commit
Diffstat (limited to 'src/moyai_bot/__init__.py')
| -rw-r--r-- | src/moyai_bot/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/moyai_bot/__init__.py b/src/moyai_bot/__init__.py new file mode 100644 index 0000000..0820f2a --- /dev/null +++ b/src/moyai_bot/__init__.py @@ -0,0 +1,9 @@ +import os + +from .bot import moyai + +TOKEN = os.getenv("TOKEN") + + +def main(): + moyai.run(TOKEN) |
