17 lines
371 B
Python
17 lines
371 B
Python
"""Entry point for the Daemon Boyfriend bot."""
|
|
|
|
from daemon_boyfriend.bot import DaemonBoyfriend
|
|
from daemon_boyfriend.config import settings
|
|
from daemon_boyfriend.utils.logging import setup_logging
|
|
|
|
|
|
def main() -> None:
|
|
"""Start the bot."""
|
|
setup_logging()
|
|
bot = DaemonBoyfriend()
|
|
bot.run(settings.discord_token)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|