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

1"""Documint V1 backend package.""" 

2 

3__version__ = "0.3.2" 

4__author__ = "Documint Team" 

5__email__ = "team@documint.xyz" 

6 

7 

8from typing import TYPE_CHECKING, Any 

9 

10if TYPE_CHECKING: 

11 from fastapi import FastAPI 

12 

13 

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 

17 

18 return _create_app(*args, **kwargs) 

19 

20 

21__all__ = ["create_app"] 

22 

23# Production deploy marker