mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
8 lines
173 B
Python
8 lines
173 B
Python
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class Middleware():
|
|
name: str = ""
|
|
description: str = ""
|
|
origin: str = "" # 注册来源
|
|
func: callable = None |