File size: 315 Bytes
a5ef538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Public interface for the API package."""

from .api import create_app, app
from .document_service import (
    save_document,
    list_documents,
    get_document,
    read_content,
)

__all__ = [
    "create_app",
    "app",
    "save_document",
    "list_documents",
    "get_document",
    "read_content",
]