17 lines
603 B
Python
17 lines
603 B
Python
|
|
"""
|
|||
|
|
A0 Software Orchestrator – Patterns-Bibliothek
|
|||
|
|
Selbstlernende Wissensdatenbank für Projekt-Patterns.
|
|||
|
|
|
|||
|
|
Exportiert:
|
|||
|
|
- PatternDB: Singleton-Datenbank-Klasse
|
|||
|
|
- PatternExtractor: Extrahiert Patterns aus Projekt-Artefakten
|
|||
|
|
- extract_from_project: Convenience-Funktion
|
|||
|
|
- get_db: Singleton-Zugriff
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from usr.plugins.a0_software_orchestrator.helpers.library.db import PatternDB, get_db
|
|||
|
|
from usr.plugins.a0_software_orchestrator.helpers.library.extractor import PatternExtractor, extract_from_project
|
|||
|
|
|
|||
|
|
__all__ = ['PatternDB', 'PatternExtractor', 'extract_from_project', 'get_db']
|
|||
|
|
__version__ = '1.0.0'
|