mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-05-22 11:21:19 +00:00
6 lines
150 B
Python
6 lines
150 B
Python
from liteyukibot import Daemon, config
|
|
|
|
if __name__ == "__main__":
|
|
daemon = Daemon(**config.load_from_yaml("config.yaml") or {})
|
|
daemon.run()
|