Initial commit of Discord GLHF Bot with core functionality, configuration, and dependencies.

This commit is contained in:
pacnpal
2025-02-11 15:34:02 -05:00
commit 908f1912bb
63 changed files with 205192 additions and 0 deletions

8
discord_glhf.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
"""
Discord GLHF Bot - Entry point script.
"""
from discord_glhf.main import main
if __name__ == "__main__":
main()