mirror of
https://code.lenaisten.de/Lenaisten/lenaverse-bot.git
synced 2024-11-22 06:53:00 +00:00
13 lines
221 B
Python
13 lines
221 B
Python
from .core.bot import LenaverseBot
|
|
from .core.config import CONFIG
|
|
|
|
|
|
def main() -> None:
|
|
LenaverseBot().run(
|
|
token=CONFIG.discord_token,
|
|
log_handler=None,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|