Coverage for src / documint_mcp / __init__.py: 70%
10 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-29 01:09 -0400
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-29 01:09 -0400
1"""Documint V1 backend package."""
3__version__ = "0.3.2"
4__author__ = "Documint Team"
5__email__ = "team@documint.xyz"
8from typing import TYPE_CHECKING, Any
10if TYPE_CHECKING:
11 from fastapi import FastAPI
14def create_app(*args: Any, **kwargs: Any) -> "FastAPI":
15 """Lazily import and return the FastAPI application."""
16 from .server import create_app as _create_app
18 return _create_app(*args, **kwargs)
21__all__ = ["create_app"]
23# Production deploy marker