gitextract_yz6qr87i/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── nordstream/ │ ├── __main__.py │ ├── cicd/ │ │ ├── devops.py │ │ ├── github.py │ │ └── gitlab.py │ ├── commands/ │ │ ├── devops.py │ │ ├── github.py │ │ └── gitlab.py │ ├── core/ │ │ ├── devops/ │ │ │ └── devops.py │ │ ├── github/ │ │ │ ├── display.py │ │ │ ├── github.py │ │ │ └── protections.py │ │ └── gitlab/ │ │ └── gitlab.py │ ├── git.py │ ├── utils/ │ │ ├── constants.py │ │ ├── devops.py │ │ ├── errors.py │ │ ├── helpers.py │ │ └── log.py │ └── yaml/ │ ├── custom.py │ ├── devops.py │ ├── generator.py │ ├── github.py │ └── gitlab.py ├── pyproject.toml └── requirements.txt