File size: 183 Bytes
3d3d712
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from typing import List

from .base import Plugin
from .register import register_plugin, test_plugin

__all__: List[str] = [
    "Plugin",
    "register_plugin",
    "test_plugin",
]