Files
sshecret/packages/sshecret-backend/src/sshecret_backend/main.py

8 lines
151 B
Python

"""Main script entrypoint."""
from .settings import BackendSettings
from .app import create_backend_app
app = create_backend_app(BackendSettings())