LiteyukiBot/docs/dev/api/comm/event.md

26 lines
362 B
Markdown
Raw Normal View History

2024-08-19 01:43:46 +00:00
---
title: liteyuki.comm.event
order: 1
icon: laptop-code
category: API
---
### ***class*** `Event`
事件类
###   ***def*** `__init__(self, name: str, data: dict[str, Any]) -> None`
 
2024-08-21 09:59:21 +00:00
<details>
<summary>源代码</summary>
```python
def __init__(self, name: str, data: dict[str, Any]):
self.name = name
self.data = data
```
</details>