mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 09:37:29 +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()
|