mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
19 lines
482 B
Python
19 lines
482 B
Python
from nonebot.matcher import Matcher
|
|
from nonebot.permission import USER, Permission
|
|
|
|
default_permission = Permission()
|
|
new_permission = Permission()
|
|
|
|
test_permission_updater = Matcher.new(permission=default_permission)
|
|
|
|
test_user_permission_updater = Matcher.new(
|
|
permission=USER("test", perm=default_permission)
|
|
)
|
|
|
|
test_custom_updater = Matcher.new(permission=default_permission)
|
|
|
|
|
|
@test_custom_updater.permission_updater
|
|
async def _() -> Permission:
|
|
return new_permission
|