mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
7 lines
183 B
Python
7 lines
183 B
Python
from liteyuki import LiteyukiBot
|
|
from src.utils import load_from_yaml
|
|
|
|
if __name__ in ("__main__", "__mp_main__"):
|
|
bot = LiteyukiBot(**load_from_yaml("config.yml"))
|
|
bot.run()
|