orionis 0.192.0__py3-none-any.whl → 0.193.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/providers/commands/reactor_commands_service_provider.py +5 -0
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/METADATA +1 -1
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/RECORD +8 -8
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/LICENCE +0 -0
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/WHEEL +0 -0
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.192.0.dist-info → orionis-0.193.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
from orionis.luminate.contracts.services.commands.reactor_commands_service import IReactorCommandsService
|
2
|
+
from orionis.luminate.contracts.services.config.config_service import IConfigService
|
2
3
|
from orionis.luminate.contracts.services.log.log_service import ILogguerService
|
3
4
|
from orionis.luminate.providers.service_provider import ServiceProvider
|
4
5
|
from orionis.luminate.services.commands.reactor_commands_service import ReactorCommandsService
|
6
|
+
from orionis.luminate.services.config.config_service import ConfigService
|
5
7
|
from orionis.luminate.services.log.log_service import LogguerService
|
6
8
|
|
7
9
|
class ReactorCommandsServiceProvider(ServiceProvider):
|
@@ -10,6 +12,9 @@ class ReactorCommandsServiceProvider(ServiceProvider):
|
|
10
12
|
"""
|
11
13
|
Registers services or bindings into the given container.
|
12
14
|
"""
|
15
|
+
if not self.app.bound(IConfigService):
|
16
|
+
self.app.scoped(IConfigService, ConfigService)
|
17
|
+
|
13
18
|
if not self.app.bound(ILogguerService):
|
14
19
|
self.app.singleton(ILogguerService, LogguerService)
|
15
20
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/console.py,sha256=4gYWxf0fWYgJ4RKwARvnTPh06FL3GJ6SAZ7R2NzOICw,1342
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=dytxNBcs4haJcwosjYc8TDbh8aqdzcNvMb2etGk10Fc,1469
|
4
4
|
orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/installer/manager.py,sha256=SYP-k_3c2oxFOCCWfMz-wnekWivn3VcFVMUU5e_sJYo,2787
|
6
6
|
orionis/installer/output.py,sha256=7O9qa2xtXMB_4ZvVi-Klneom9YazwygAd_4uYAoxhbU,8548
|
@@ -138,7 +138,7 @@ orionis/luminate/patterns/singleton.py,sha256=b3U0nubKSQWyal5wTXADVPtOztkaTk-M8Z
|
|
138
138
|
orionis/luminate/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
139
|
orionis/luminate/providers/service_provider.py,sha256=QG5TXP9oXsCdUhnMyCBEn0G_CnUJQD_u7wd_4LXE9yc,1135
|
140
140
|
orionis/luminate/providers/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
|
-
orionis/luminate/providers/commands/reactor_commands_service_provider.py,sha256=
|
141
|
+
orionis/luminate/providers/commands/reactor_commands_service_provider.py,sha256=l4LoMtDgXYlmXiqPEsafS6HI_A8YUMsjGPJA8Lra-Wo,1366
|
142
142
|
orionis/luminate/providers/commands/scheduler_provider.py,sha256=7Pq6V58UcJrQvhSDgNrQ6Z4KTO6_Jzp6EoP8oqPLsQg,485
|
143
143
|
orionis/luminate/providers/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
144
144
|
orionis/luminate/providers/config/config_service_provider.py,sha256=UWozQ84StJjn3x2gjqslLAu5P1GqgPzSvj-91hgfapk,466
|
@@ -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.193.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
185
|
+
orionis-0.193.0.dist-info/METADATA,sha256=9h6YK6U3wekQApndb7WrwXwrLMZ_KWgFK9yK2B8J8sg,3003
|
186
|
+
orionis-0.193.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
187
|
+
orionis-0.193.0.dist-info/entry_points.txt,sha256=a_e0faeSqyUCVZd0MqljQ2oaHHdlsz6g9sU_bMqi5zQ,49
|
188
|
+
orionis-0.193.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
189
|
+
orionis-0.193.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|