Skip to content
Snippets Groups Projects

Added sentry SDK

Merged Neda Moeini requested to merge feature/add-sentry-sdk into develop
All threads resolved!
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
"""The main entrypoint for :term:`GSO`, and the different ways in which it can be run."""
import sentry_sdk
import typer
from orchestrator import OrchestratorCore, app_settings
@@ -41,7 +42,7 @@ def init_worker_app() -> OrchestratorCore:
def init_cli_app() -> typer.Typer:
"""Initialise :term:`GSO` as a CLI application."""
from gso.cli import imports, netbox
from gso.cli import imports, netbox # noqa: PLC0415
cli_app.add_typer(imports.app, name="import-cli")
cli_app.add_typer(netbox.app, name="netbox-cli")
Loading