orionis 0.163.0__py3-none-any.whl → 0.164.0__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.
- orionis/framework.py +1 -1
- orionis/luminate/contracts/providers/service_provider.py +1 -1
- orionis/luminate/providers/commands/reactor_commands_service_provider.py +2 -2
- orionis/luminate/providers/commands/scheduler_provider.py +2 -2
- orionis/luminate/providers/config/config_service_provider.py +2 -2
- orionis/luminate/providers/environment/environment__service_provider.py +2 -2
- orionis/luminate/providers/files/paths_provider.py +2 -2
- orionis/luminate/providers/service_provider.py +2 -2
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/METADATA +1 -1
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/RECORD +14 -14
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/LICENCE +0 -0
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/WHEEL +0 -0
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.163.0.dist-info → orionis-0.164.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
@@ -4,7 +4,7 @@ from orionis.luminate.container.container import Container
|
|
4
4
|
class IServiceProvider(ABC):
|
5
5
|
|
6
6
|
@abstractmethod
|
7
|
-
def register(self, container: Container) -> None:
|
7
|
+
async def register(self, container: Container) -> None:
|
8
8
|
"""
|
9
9
|
Registers services or bindings into the given container.
|
10
10
|
|
@@ -4,11 +4,11 @@ from orionis.luminate.services.commands.reactor_commands_service import ReactorC
|
|
4
4
|
|
5
5
|
class ReactorCommandsServiceProvider(ServiceProvider):
|
6
6
|
|
7
|
-
def register(self) -> None:
|
7
|
+
async def register(self) -> None:
|
8
8
|
"""
|
9
9
|
Registers services or bindings into the given container.
|
10
10
|
"""
|
11
|
-
self.app.singleton(IReactorCommandsService, ReactorCommandsService)
|
11
|
+
await self.app.singleton(IReactorCommandsService, ReactorCommandsService)
|
12
12
|
|
13
13
|
async def boot(self) -> None:
|
14
14
|
"""
|
@@ -4,8 +4,8 @@ from orionis.luminate.services.commands.scheduler_service import ScheduleService
|
|
4
4
|
|
5
5
|
class ScheduleServiceProvider(ServiceProvider):
|
6
6
|
|
7
|
-
def register(self) -> None:
|
7
|
+
async def register(self) -> None:
|
8
8
|
"""
|
9
9
|
Registers services or bindings into the given container.
|
10
10
|
"""
|
11
|
-
self.app.scoped(IScheduleService, ScheduleService)
|
11
|
+
await self.app.scoped(IScheduleService, ScheduleService)
|
@@ -4,8 +4,8 @@ from orionis.luminate.services.config.config_service import ConfigService
|
|
4
4
|
|
5
5
|
class ConfigServiceProvider(ServiceProvider):
|
6
6
|
|
7
|
-
def register(self) -> None:
|
7
|
+
async def register(self) -> None:
|
8
8
|
"""
|
9
9
|
Registers services or bindings into the given container.
|
10
10
|
"""
|
11
|
-
self.app.scoped(IConfigService, ConfigService)
|
11
|
+
await self.app.scoped(IConfigService, ConfigService)
|
@@ -5,11 +5,11 @@ from orionis.luminate.services.files.path_resolver_service import PathResolverSe
|
|
5
5
|
|
6
6
|
class EnvironmentServiceProvider(ServiceProvider):
|
7
7
|
|
8
|
-
def register(self) -> None:
|
8
|
+
async def register(self) -> None:
|
9
9
|
"""
|
10
10
|
Registers services or bindings into the given container.
|
11
11
|
"""
|
12
|
-
self.app.singleton(IEnvironmentService, EnvironmentService)
|
12
|
+
await self.app.singleton(IEnvironmentService, EnvironmentService)
|
13
13
|
|
14
14
|
async def boot(self) -> None:
|
15
15
|
"""
|
@@ -4,11 +4,11 @@ from orionis.luminate.services.files.path_resolver_service import PathResolverSe
|
|
4
4
|
|
5
5
|
class PathResolverProvider(ServiceProvider):
|
6
6
|
|
7
|
-
def register(self) -> None:
|
7
|
+
async def register(self) -> None:
|
8
8
|
"""
|
9
9
|
Registers services or bindings into the given container.
|
10
10
|
"""
|
11
|
-
self.app.singleton(IPathResolverService, PathResolverService)
|
11
|
+
await self.app.singleton(IPathResolverService, PathResolverService)
|
12
12
|
|
13
13
|
async def boot(self) -> None:
|
14
14
|
"""
|
@@ -22,7 +22,7 @@ class ServiceProvider(IServiceProvider):
|
|
22
22
|
"""
|
23
23
|
self.app = app
|
24
24
|
|
25
|
-
def register(self) -> None:
|
25
|
+
async def register(self) -> None:
|
26
26
|
"""
|
27
27
|
Register services in the container.
|
28
28
|
|
@@ -36,7 +36,7 @@ class ServiceProvider(IServiceProvider):
|
|
36
36
|
"""
|
37
37
|
raise NotImplementedError("This method should be overridden in the subclass")
|
38
38
|
|
39
|
-
def boot(self) -> None:
|
39
|
+
async def boot(self) -> None:
|
40
40
|
"""
|
41
41
|
Boot services in the container.
|
42
42
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/cli_manager.py,sha256=oXY5UYvtalP996h7z5iaEc7z5b1hyFWXrLPrvtoxWcU,1368
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=mC5J_jTpYU0Wcv8FaqwN1JoNXxtENXoOvGNP9HSeLP0,1387
|
4
4
|
orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/installer/manager.py,sha256=SiypGJ2YiFeWyK_4drkheHUd42oS2CH63PNuxiw6Cps,3139
|
6
6
|
orionis/installer/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -91,7 +91,7 @@ orionis/luminate/contracts/foundation/environment/environment_bootstrapper.py,sh
|
|
91
91
|
orionis/luminate/contracts/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
92
|
orionis/luminate/contracts/foundation/providers/service_providers_bootstrapper.py,sha256=DTXjjZ8RfpLZrSMe6bNlEAHUPepTtS3odgas51w3ZKw,1567
|
93
93
|
orionis/luminate/contracts/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
-
orionis/luminate/contracts/providers/service_provider.py,sha256=
|
94
|
+
orionis/luminate/contracts/providers/service_provider.py,sha256=HxVwF2wjvGCfgtLHEIuCyuTMThux48wBvWnO3Ue6x7g,423
|
95
95
|
orionis/luminate/contracts/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
96
|
orionis/luminate/contracts/services/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
97
|
orionis/luminate/contracts/services/commands/reactor_commands_service.py,sha256=msIOfwOYASFNuS4shhwsnukPH5_XnuxNBHW9f6q-Lqo,795
|
@@ -137,16 +137,16 @@ orionis/luminate/foundation/providers/service_providers_bootstrapper.py,sha256=l
|
|
137
137
|
orionis/luminate/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
138
|
orionis/luminate/patterns/singleton.py,sha256=b3U0nubKSQWyal5wTXADVPtOztkaTk-M8Zwy-bje1L0,1425
|
139
139
|
orionis/luminate/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
|
-
orionis/luminate/providers/service_provider.py,sha256=
|
140
|
+
orionis/luminate/providers/service_provider.py,sha256=eKkgd1uDEVV5kaqLwb7HsLNeekXiG5_aPTWQI0QXUQ4,1483
|
141
141
|
orionis/luminate/providers/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
142
|
-
orionis/luminate/providers/commands/reactor_commands_service_provider.py,sha256=
|
143
|
-
orionis/luminate/providers/commands/scheduler_provider.py,sha256=
|
142
|
+
orionis/luminate/providers/commands/reactor_commands_service_provider.py,sha256=Qp5-jSKw2GlAuCaAzpbVqit7ahgtjpYFFrz8IJlE3sE,840
|
143
|
+
orionis/luminate/providers/commands/scheduler_provider.py,sha256=P2hWF4UOLbCec9uPUUCYG9-0XlRtZ8oLQXXq3nGV8Xc,497
|
144
144
|
orionis/luminate/providers/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
-
orionis/luminate/providers/config/config_service_provider.py,sha256=
|
145
|
+
orionis/luminate/providers/config/config_service_provider.py,sha256=VCLZ17ZN4-LqV7GpIs0h5wHQk2NptNyWqyA3jabTznQ,478
|
146
146
|
orionis/luminate/providers/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
|
-
orionis/luminate/providers/environment/environment__service_provider.py,sha256=
|
147
|
+
orionis/luminate/providers/environment/environment__service_provider.py,sha256=Qr5OGueoRc991oKoHvXpYS0B9NiH-RKby1YmKNo_Y5U,899
|
148
148
|
orionis/luminate/providers/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
|
-
orionis/luminate/providers/files/paths_provider.py,sha256=
|
149
|
+
orionis/luminate/providers/files/paths_provider.py,sha256=lY5eEkWOfASMIZjWjPg8M8bj9jkTirH4Jm9qDr6e6vE,803
|
150
150
|
orionis/luminate/providers/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
151
|
orionis/luminate/providers/log/log_service_provider.py,sha256=4mXkd9kTKW8dsqe6ScbEDO7b6GsFgAfu9vFJNjECZlw,740
|
152
152
|
orionis/luminate/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -181,9 +181,9 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
181
|
tests/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
182
|
tests/tools/class_example.py,sha256=dIPD997Y15n6WmKhWoOFSwEldRm9MdOHTZZ49eF1p3c,1056
|
183
183
|
tests/tools/test_reflection.py,sha256=bhLQ7VGVod4B8sv-rW9AjnOumvaBVsoxieA3sdoM2yM,5244
|
184
|
-
orionis-0.
|
185
|
-
orionis-0.
|
186
|
-
orionis-0.
|
187
|
-
orionis-0.
|
188
|
-
orionis-0.
|
189
|
-
orionis-0.
|
184
|
+
orionis-0.164.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
185
|
+
orionis-0.164.0.dist-info/METADATA,sha256=vds82DqQGRqwNOmFfk5Pza8YMOB0K4zBmYPtu8VZ6Us,2970
|
186
|
+
orionis-0.164.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
187
|
+
orionis-0.164.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
|
188
|
+
orionis-0.164.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
189
|
+
orionis-0.164.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|