mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
9 lines
219 B
Python
9 lines
219 B
Python
from nonebot import require
|
|
|
|
from plugins.export import test
|
|
from .export import test as test_related
|
|
|
|
test_require = require("export").test
|
|
|
|
assert test is test_related and test is test_require, "Export Require Error"
|