mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-12-16 13:40:53 +08:00
9 lines
323 B
Python
9 lines
323 B
Python
import hoshino
|
|
from hoshino.typing import CommandSession
|
|
|
|
@hoshino.sucmd('清理数据')
|
|
async def clean_image(session: CommandSession):
|
|
await hoshino.get_bot().clean_data_dir(self_id=session.event.self_id,
|
|
data_dir='image')
|
|
await session.send('Image 文件夹已清理')
|