mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
14 lines
287 B
Python
14 lines
287 B
Python
from sanic import Blueprint
|
|
|
|
from api.rest.api_v1.endpoints import reports, setup
|
|
from api.rest.api_v1.fhir import r4
|
|
|
|
api = Blueprint.group(
|
|
reports.reports,
|
|
setup.setup,
|
|
r4.fhir_v4,
|
|
version=1,
|
|
version_prefix="/api/v",
|
|
url_prefix="/",
|
|
strict_slashes=True,
|
|
)
|