Files
BrowserOS/packages/browseros/build/modules/annotate/__init__.py
Nikhil ffb1dfdf2a cli improvements (#222)
* feat: support annotate

* feat: extract supports --feature

* feat: support classify in dev cli
2025-12-06 17:04:00 -08:00

16 lines
437 B
Python
Generated

"""
Annotate module - Create git commits organized by features.
Provides commands for creating feature-based commits:
- annotate_features: Create commits for all features with modified files
- annotate_single_feature: Create a commit for a specific feature
"""
from .annotate import annotate_features, annotate_single_feature, AnnotateModule
__all__ = [
"annotate_features",
"annotate_single_feature",
"AnnotateModule",
]