spakky-fastapi 1.2.0__py3-none-any.whl → 1.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- spakky_fastapi/plugins/fast_api.py +2 -2
- spakky_fastapi/post_processor.py +1 -1
- {spakky_fastapi-1.2.0.dist-info → spakky_fastapi-1.2.2.dist-info}/METADATA +4 -1
- {spakky_fastapi-1.2.0.dist-info → spakky_fastapi-1.2.2.dist-info}/RECORD +5 -5
- {spakky_fastapi-1.2.0.dist-info → spakky_fastapi-1.2.2.dist-info}/WHEEL +0 -0
@@ -4,7 +4,7 @@ from fastapi import FastAPI
|
|
4
4
|
from spakky.application.interfaces.pluggable import IPluggable
|
5
5
|
from spakky.application.interfaces.registry import IPodRegistry
|
6
6
|
|
7
|
-
from spakky_fastapi.post_processor import
|
7
|
+
from spakky_fastapi.post_processor import FastAPIPostProcessor
|
8
8
|
|
9
9
|
|
10
10
|
class FastAPIPlugin(IPluggable):
|
@@ -17,7 +17,7 @@ class FastAPIPlugin(IPluggable):
|
|
17
17
|
|
18
18
|
def register(self, registry: IPodRegistry) -> None:
|
19
19
|
registry.register_post_processor(
|
20
|
-
|
20
|
+
FastAPIPostProcessor(
|
21
21
|
self.app,
|
22
22
|
self.logger,
|
23
23
|
)
|
spakky_fastapi/post_processor.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: spakky-fastapi
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.2
|
4
4
|
Summary: Highly abstracted Framework core to use DDD & DI/IoC & AOP & Etc...
|
5
5
|
Author: Spakky
|
6
6
|
Author-email: sejong418@icloud.com
|
@@ -35,6 +35,9 @@ Description-Content-Type: text/markdown
|
|
35
35
|
<a href="https://github.com/psf/black">
|
36
36
|
<img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Black">
|
37
37
|
</a>
|
38
|
+
<a href="https://github.com/pylint-dev/pylint">
|
39
|
+
<img src="https://img.shields.io/badge/linting-pylint-yellowgreen" alt="Pylint">
|
40
|
+
</a>
|
38
41
|
</p>
|
39
42
|
|
40
43
|
---
|
@@ -6,11 +6,11 @@ spakky_fastapi/middlewares/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
6
6
|
spakky_fastapi/middlewares/error_handling.py,sha256=09cLArDGsN4mMIcC3qWr3SGivLfA6rUQ0PaRwQIT-YA,1816
|
7
7
|
spakky_fastapi/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
spakky_fastapi/plugins/authenticate.py,sha256=63tsHFjEzHklsmNyjPoksqiwiwo04h1dJjpzJq9pRf0,434
|
9
|
-
spakky_fastapi/plugins/fast_api.py,sha256=
|
10
|
-
spakky_fastapi/post_processor.py,sha256=
|
9
|
+
spakky_fastapi/plugins/fast_api.py,sha256=K09znsenVDu7t-NNPSRtNxX7nzutDxBJqUGy20yT3oM,645
|
10
|
+
spakky_fastapi/post_processor.py,sha256=viHvWb_IWB1nnD4SHnCEwFgg8Wc25FV0q81UO5FqWUg,2976
|
11
11
|
spakky_fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
spakky_fastapi/stereotypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
spakky_fastapi/stereotypes/api_controller.py,sha256=NM0gyTQfuHnENtvyfm5T9Y427gQdxdUcVYDzAXryF2M,19320
|
14
|
-
spakky_fastapi-1.2.
|
15
|
-
spakky_fastapi-1.2.
|
16
|
-
spakky_fastapi-1.2.
|
14
|
+
spakky_fastapi-1.2.2.dist-info/METADATA,sha256=1y7gtcMF60ScLNNnaYN_-m9_f2uX9ezN20iJOY6T97s,1853
|
15
|
+
spakky_fastapi-1.2.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
16
|
+
spakky_fastapi-1.2.2.dist-info/RECORD,,
|
File without changes
|