mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
20 lines
516 B
Python
20 lines
516 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
|
|
|
|
@Time : 2024/8/22 下午12:31
|
|
@Author : snowykami
|
|
@Email : snowykami@outlook.com
|
|
@File : liteecho.py
|
|
@Software: PyCharm
|
|
"""
|
|
|
|
from liteyuki.message.on import on_startswith
|
|
from liteyuki.message.event import MessageEvent
|
|
from liteyuki.message.rule import is_su_rule
|
|
|
|
|
|
@on_startswith(["liteecho"], rule=is_su_rule).handle()
|
|
async def liteecho(event: MessageEvent):
|
|
event.reply(event.raw_message.strip()[8:].strip())
|