mirror of
https://github.com/hanxi/xiaomusic.git
synced 2026-03-15 08:13:16 +08:00
9 lines
302 B
Python
9 lines
302 B
Python
async def code1(arg1):
|
|
global log, xiaomusic
|
|
log.info(f"code1:{arg1}")
|
|
did = xiaomusic.get_cur_did()
|
|
await xiaomusic.do_tts(did, "你好,我是自定义的测试口令")
|
|
|
|
query = xiaomusic.command_handler.last_cmd.strip()
|
|
await xiaomusic.do_tts(did, f"你说的是: {query}")
|