10 lines
286 B
Python
10 lines
286 B
Python
|
|
"""Minimal Example plugin package.
|
||
|
|
|
||
|
|
Re-export the plugin class so ``discover_builtins`` finds it when scanning
|
||
|
|
the builtins package namespace (see guide chapter 29.1).
|
||
|
|
"""
|
||
|
|
|
||
|
|
from app.plugins.builtins.minimal_example.plugin import MinimalExamplePlugin
|
||
|
|
|
||
|
|
__all__ = ["MinimalExamplePlugin"]
|