mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 17:57:24 +08:00
15 lines
171 B
Python
15 lines
171 B
Python
|
from . import (
|
||
|
satori,
|
||
|
onebot
|
||
|
)
|
||
|
|
||
|
|
||
|
def init(config: dict):
|
||
|
onebot.init()
|
||
|
satori.init(config)
|
||
|
|
||
|
|
||
|
def register():
|
||
|
onebot.register()
|
||
|
satori.register()
|