10 lines
179 B
Python
10 lines
179 B
Python
"""
|
|
GLAM Extractor API
|
|
|
|
FastAPI-based REST API for heritage custodian data services,
|
|
including DSPy-powered SPARQL query generation.
|
|
"""
|
|
|
|
from .main import app
|
|
|
|
__all__ = ["app"]
|