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