Skip to content

Commit 04ae3ff

Browse files
committed
[DOP-15023] Fix missing backend factory
1 parent 2e44acb commit 04ae3ff

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

docs/changelog/0.1.4.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
0.1.4 (2024-04-15)
2+
==================
3+
4+
Bug Fixes
5+
----------
6+
7+
Fix missing backend factory.

docs/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
:caption: Changelog
44

55
DRAFT
6+
0.1.4
67
0.1.3
78
0.1.2
89
0.1.1

syncmaster/backend/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@ def application_factory(settings: Settings) -> FastAPI:
5454
)
5555

5656
return application
57+
58+
59+
def get_application() -> FastAPI:
60+
return application_factory(settings=Settings())

0 commit comments

Comments
 (0)