mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-04 00:57:38 +08:00
13 lines
319 B
Python
13 lines
319 B
Python
from .contact import load_contact
|
|
from .hotreload import load_hotreload
|
|
from .login import load_login
|
|
from .messages import load_messages
|
|
from .register import load_register
|
|
|
|
def load_components(core):
|
|
load_contact(core)
|
|
load_hotreload(core)
|
|
load_login(core)
|
|
load_messages(core)
|
|
load_register(core)
|