Files
leocrm/app/plugins/builtins/__init__.py
T

10 lines
395 B
Python
Raw Normal View History

"""Built-in plugins directory.
Each module in this package that exports a BasePlugin subclass will be
discovered automatically by the plugin registry on application startup
via pkgutil.iter_modules — no manual imports needed here.
Subdirectory plugins (tags, permissions, entity_links, mail, etc.) export
their plugin class via __init__.py so the registry can discover them as packages.
"""