Coverage for src/django_resume/plugins/__init__.py: 100%
10 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-10-11 10:47 +0200
« prev ^ index » next coverage.py v7.6.1, created at 2024-10-11 10:47 +0200
1from .registry import plugin_registry
2from .about import AboutPlugin
3from .base import SimplePlugin, ListPlugin
4from .education import EducationPlugin
5from .identity import IdentityPlugin
6from .projects import ProjectsPlugin
7from .skills import SkillsPlugin
8from .tokens import TokenPlugin
9from .timelines import EmployedTimelinePlugin, FreelanceTimelinePlugin
12__all__ = [
13 "AboutPlugin",
14 "EducationPlugin",
15 "EmployedTimelinePlugin",
16 "FreelanceTimelinePlugin",
17 "IdentityPlugin",
18 "ListPlugin",
19 "plugin_registry",
20 "ProjectsPlugin",
21 "SimplePlugin",
22 "SkillsPlugin",
23 "TokenPlugin",
24]