Files
nonebot2/tests/python_3_12/plugins/aliased_param/param_arg.py
2025-08-07 14:54:22 +08:00

11 lines
211 B
Python

from typing import Annotated
from nonebot.adapters import Message
from nonebot.params import Arg
type AliasedArg = Annotated[Message, Arg()]
async def aliased_arg(key: AliasedArg) -> Message:
return key