Coverage for src/lexigram/web/contributors/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
1"""Web contributor discovery and registry.
3Entry-point-based contributor system for extension packages to register
4controllers and middleware with the web provider.
5"""
7from lexigram.web.contributors.discovery import ENTRY_POINT_GROUP, load_web_contributors
8from lexigram.web.contributors.registry import WebContributorRegistry
10__all__ = ["ENTRY_POINT_GROUP", "WebContributorRegistry", "load_web_contributors"]