mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
16 lines
278 B
Python
16 lines
278 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
本模块用于轻雪主进程和子进程之间的通信的事件类
|
|
"""
|
|
from typing import Any
|
|
|
|
|
|
class Event:
|
|
"""
|
|
事件类
|
|
"""
|
|
|
|
def __init__(self, name: str, data: dict[str, Any]):
|
|
self.name = name
|
|
self.data = data
|