mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-19 11:31:03 +00:00
* feat: new extension installer + bundle support * feat: support bundle extension download in cli * chore: update release yaml to include new bundle_extensions module
7 lines
171 B
Python
Generated
7 lines
171 B
Python
Generated
#!/usr/bin/env python3
|
|
"""Extensions modules for BrowserOS build system"""
|
|
|
|
from .bundled_extensions import BundledExtensionsModule
|
|
|
|
__all__ = ["BundledExtensionsModule"]
|