Rohit Malhotra 61a93d010c
Refactor GitLab service into modular mixins pattern (#10727)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-08-31 19:10:40 +00:00

16 lines
389 B
Python

# openhands/integrations/gitlab/service/__init__.py
from .branches import GitLabBranchesMixin
from .features import GitLabFeaturesMixin
from .prs import GitLabPRsMixin
from .repos import GitLabReposMixin
from .resolver import GitLabResolverMixin
__all__ = [
'GitLabBranchesMixin',
'GitLabFeaturesMixin',
'GitLabPRsMixin',
'GitLabReposMixin',
'GitLabResolverMixin',
]