orionis 0.582.0__py3-none-any.whl → 0.584.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/console/core/reactor.py +4 -18
- orionis/container/facades/facade.py +2 -3
- orionis/foundation/application.py +181 -319
- orionis/foundation/config/roots/paths.py +56 -151
- orionis/foundation/contracts/application.py +742 -401
- orionis/metadata/framework.py +1 -1
- orionis/services/file/contracts/directory.py +43 -199
- orionis/services/file/directory.py +58 -197
- {orionis-0.582.0.dist-info → orionis-0.584.0.dist-info}/METADATA +1 -1
- {orionis-0.582.0.dist-info → orionis-0.584.0.dist-info}/RECORD +13 -14
- orionis/app.py +0 -17
- {orionis-0.582.0.dist-info → orionis-0.584.0.dist-info}/WHEEL +0 -0
- {orionis-0.582.0.dist-info → orionis-0.584.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.582.0.dist-info → orionis-0.584.0.dist-info}/top_level.txt +0 -0
@@ -17,341 +17,202 @@ class Directory(IDirectory):
|
|
17
17
|
|
18
18
|
def __init__(self, app: IApplication) -> None:
|
19
19
|
"""
|
20
|
-
Initialize the Directory
|
20
|
+
Initialize the Directory service.
|
21
21
|
|
22
22
|
Parameters
|
23
23
|
----------
|
24
24
|
app : IApplication
|
25
25
|
The application instance used to resolve directory paths.
|
26
|
-
"""
|
27
|
-
self.__app = app
|
28
|
-
|
29
|
-
def root(self) -> Path:
|
30
|
-
"""
|
31
|
-
Get the root directory path of the application.
|
32
|
-
|
33
|
-
Returns
|
34
|
-
-------
|
35
|
-
Path
|
36
|
-
The path to the application's root directory.
|
37
|
-
"""
|
38
|
-
return Path(self.__app.path('root'))
|
39
|
-
|
40
|
-
def console(self) -> Path:
|
41
|
-
"""
|
42
|
-
Get the console directory path.
|
43
26
|
|
44
27
|
Returns
|
45
28
|
-------
|
46
|
-
|
47
|
-
The path to the console directory.
|
29
|
+
None
|
48
30
|
"""
|
49
|
-
|
31
|
+
self.__app = app
|
50
32
|
|
51
|
-
def
|
33
|
+
def root(self) -> Path:
|
52
34
|
"""
|
53
|
-
Get the
|
35
|
+
Get the root directory of the application.
|
54
36
|
|
55
37
|
Returns
|
56
38
|
-------
|
57
39
|
Path
|
58
|
-
|
40
|
+
Path object representing the root directory.
|
59
41
|
"""
|
60
|
-
return Path(self.__app.path('
|
42
|
+
return Path(self.__app.path('root'))
|
61
43
|
|
62
|
-
def
|
44
|
+
def app(self) -> Path:
|
63
45
|
"""
|
64
|
-
Get the
|
46
|
+
Get the main application directory.
|
65
47
|
|
66
48
|
Returns
|
67
49
|
-------
|
68
50
|
Path
|
69
|
-
|
51
|
+
Path object representing the application directory.
|
70
52
|
"""
|
71
|
-
return Path(self.__app.path('
|
53
|
+
return Path(self.__app.path('app'))
|
72
54
|
|
73
|
-
def
|
55
|
+
def console(self) -> Path:
|
74
56
|
"""
|
75
|
-
Get the
|
57
|
+
Get the console directory.
|
76
58
|
|
77
59
|
Returns
|
78
60
|
-------
|
79
61
|
Path
|
80
|
-
|
62
|
+
Path object representing the console directory.
|
81
63
|
"""
|
82
|
-
return Path(self.__app.path('
|
64
|
+
return Path(self.__app.path('console'))
|
83
65
|
|
84
|
-
def
|
66
|
+
def exceptions(self) -> Path:
|
85
67
|
"""
|
86
|
-
Get the
|
68
|
+
Get the exceptions directory.
|
87
69
|
|
88
70
|
Returns
|
89
71
|
-------
|
90
72
|
Path
|
91
|
-
|
73
|
+
Path object representing the exceptions directory.
|
92
74
|
"""
|
93
|
-
return Path(self.__app.path('
|
75
|
+
return Path(self.__app.path('exceptions'))
|
94
76
|
|
95
|
-
def
|
77
|
+
def http(self) -> Path:
|
96
78
|
"""
|
97
|
-
Get the
|
79
|
+
Get the HTTP directory.
|
98
80
|
|
99
81
|
Returns
|
100
82
|
-------
|
101
83
|
Path
|
102
|
-
|
84
|
+
Path object representing the HTTP directory.
|
103
85
|
"""
|
104
|
-
return Path(self.__app.path('
|
86
|
+
return Path(self.__app.path('http'))
|
105
87
|
|
106
88
|
def models(self) -> Path:
|
107
89
|
"""
|
108
|
-
Get the models directory
|
90
|
+
Get the models directory.
|
109
91
|
|
110
92
|
Returns
|
111
93
|
-------
|
112
94
|
Path
|
113
|
-
|
95
|
+
Path object representing the models directory.
|
114
96
|
"""
|
115
97
|
return Path(self.__app.path('models'))
|
116
98
|
|
117
99
|
def providers(self) -> Path:
|
118
100
|
"""
|
119
|
-
Get the providers directory
|
101
|
+
Get the providers directory.
|
120
102
|
|
121
103
|
Returns
|
122
104
|
-------
|
123
105
|
Path
|
124
|
-
|
106
|
+
Path object representing the providers directory.
|
125
107
|
"""
|
126
108
|
return Path(self.__app.path('providers'))
|
127
109
|
|
128
|
-
def events(self) -> Path:
|
129
|
-
"""
|
130
|
-
Get the events directory path.
|
131
|
-
|
132
|
-
Returns
|
133
|
-
-------
|
134
|
-
Path
|
135
|
-
The path to the events directory.
|
136
|
-
"""
|
137
|
-
return Path(self.__app.path('events'))
|
138
|
-
|
139
|
-
def listeners(self) -> Path:
|
140
|
-
"""
|
141
|
-
Get the listeners directory path.
|
142
|
-
|
143
|
-
Returns
|
144
|
-
-------
|
145
|
-
Path
|
146
|
-
The path to the listeners directory.
|
147
|
-
"""
|
148
|
-
return Path(self.__app.path('listeners'))
|
149
|
-
|
150
110
|
def notifications(self) -> Path:
|
151
111
|
"""
|
152
|
-
Get the notifications directory
|
112
|
+
Get the notifications directory.
|
153
113
|
|
154
114
|
Returns
|
155
115
|
-------
|
156
116
|
Path
|
157
|
-
|
117
|
+
Path object representing the notifications directory.
|
158
118
|
"""
|
159
119
|
return Path(self.__app.path('notifications'))
|
160
120
|
|
161
|
-
def jobs(self) -> Path:
|
162
|
-
"""
|
163
|
-
Get the jobs directory path.
|
164
|
-
|
165
|
-
Returns
|
166
|
-
-------
|
167
|
-
Path
|
168
|
-
The path to the jobs directory.
|
169
|
-
"""
|
170
|
-
return Path(self.__app.path('jobs'))
|
171
|
-
|
172
|
-
def policies(self) -> Path:
|
173
|
-
"""
|
174
|
-
Get the policies directory path.
|
175
|
-
|
176
|
-
Returns
|
177
|
-
-------
|
178
|
-
Path
|
179
|
-
The path to the policies directory.
|
180
|
-
"""
|
181
|
-
return Path(self.__app.path('policies'))
|
182
|
-
|
183
|
-
def exceptions(self) -> Path:
|
184
|
-
"""
|
185
|
-
Get the exceptions directory path.
|
186
|
-
|
187
|
-
Returns
|
188
|
-
-------
|
189
|
-
Path
|
190
|
-
The path to the exceptions directory.
|
191
|
-
"""
|
192
|
-
return Path(self.__app.path('exceptions'))
|
193
|
-
|
194
121
|
def services(self) -> Path:
|
195
122
|
"""
|
196
|
-
Get the services directory
|
123
|
+
Get the services directory.
|
197
124
|
|
198
125
|
Returns
|
199
126
|
-------
|
200
127
|
Path
|
201
|
-
|
128
|
+
Path object representing the services directory.
|
202
129
|
"""
|
203
130
|
return Path(self.__app.path('services'))
|
204
131
|
|
205
|
-
def
|
206
|
-
"""
|
207
|
-
Get the views directory path.
|
208
|
-
|
209
|
-
Returns
|
210
|
-
-------
|
211
|
-
Path
|
212
|
-
The path to the views directory.
|
213
|
-
"""
|
214
|
-
return Path(self.__app.path('views'))
|
215
|
-
|
216
|
-
def lang(self) -> Path:
|
217
|
-
"""
|
218
|
-
Get the language files directory path.
|
219
|
-
|
220
|
-
Returns
|
221
|
-
-------
|
222
|
-
Path
|
223
|
-
The path to the language files directory.
|
224
|
-
"""
|
225
|
-
return Path(self.__app.path('lang'))
|
226
|
-
|
227
|
-
def assets(self) -> Path:
|
132
|
+
def jobs(self) -> Path:
|
228
133
|
"""
|
229
|
-
Get the
|
134
|
+
Get the jobs directory.
|
230
135
|
|
231
136
|
Returns
|
232
137
|
-------
|
233
138
|
Path
|
234
|
-
|
139
|
+
Path object representing the jobs directory.
|
235
140
|
"""
|
236
|
-
return Path(self.__app.path('
|
141
|
+
return Path(self.__app.path('jobs'))
|
237
142
|
|
238
|
-
def
|
143
|
+
def bootstrap(self) -> Path:
|
239
144
|
"""
|
240
|
-
Get the
|
145
|
+
Get the bootstrap directory.
|
241
146
|
|
242
147
|
Returns
|
243
148
|
-------
|
244
149
|
Path
|
245
|
-
|
150
|
+
Path object representing the bootstrap directory.
|
246
151
|
"""
|
247
|
-
return Path(self.__app.path('
|
152
|
+
return Path(self.__app.path('bootstrap'))
|
248
153
|
|
249
154
|
def config(self) -> Path:
|
250
155
|
"""
|
251
|
-
Get the configuration directory
|
156
|
+
Get the configuration directory.
|
252
157
|
|
253
158
|
Returns
|
254
159
|
-------
|
255
160
|
Path
|
256
|
-
|
161
|
+
Path object representing the configuration directory.
|
257
162
|
"""
|
258
163
|
return Path(self.__app.path('config'))
|
259
164
|
|
260
|
-
def
|
165
|
+
def database(self) -> Path:
|
261
166
|
"""
|
262
|
-
Get the
|
167
|
+
Get the database directory.
|
263
168
|
|
264
169
|
Returns
|
265
170
|
-------
|
266
171
|
Path
|
267
|
-
|
172
|
+
Path object representing the database directory.
|
268
173
|
"""
|
269
|
-
return Path(self.__app.path('
|
174
|
+
return Path(self.__app.path('database'))
|
270
175
|
|
271
|
-
def
|
176
|
+
def resources(self) -> Path:
|
272
177
|
"""
|
273
|
-
Get the
|
178
|
+
Get the resources directory.
|
274
179
|
|
275
180
|
Returns
|
276
181
|
-------
|
277
182
|
Path
|
278
|
-
|
183
|
+
Path object representing the resources directory.
|
279
184
|
"""
|
280
|
-
return Path(self.__app.path('
|
185
|
+
return Path(self.__app.path('resources'))
|
281
186
|
|
282
|
-
def
|
283
|
-
"""
|
284
|
-
Get the factories directory path.
|
285
|
-
|
286
|
-
Returns
|
287
|
-
-------
|
288
|
-
Path
|
289
|
-
The path to the factories directory.
|
290
|
-
"""
|
291
|
-
return Path(self.__app.path('factories'))
|
292
|
-
|
293
|
-
def logs(self) -> Path:
|
294
|
-
"""
|
295
|
-
Get the logs directory path.
|
296
|
-
|
297
|
-
Returns
|
298
|
-
-------
|
299
|
-
Path
|
300
|
-
The path to the logs directory.
|
301
|
-
"""
|
302
|
-
return Path(self.__app.path('logs'))
|
303
|
-
|
304
|
-
def sessions(self) -> Path:
|
305
|
-
"""
|
306
|
-
Get the sessions directory path.
|
307
|
-
|
308
|
-
Returns
|
309
|
-
-------
|
310
|
-
Path
|
311
|
-
The path to the sessions directory.
|
312
|
-
"""
|
313
|
-
return Path(self.__app.path('sessions'))
|
314
|
-
|
315
|
-
def cache(self) -> Path:
|
316
|
-
"""
|
317
|
-
Get the cache directory path.
|
318
|
-
|
319
|
-
Returns
|
320
|
-
-------
|
321
|
-
Path
|
322
|
-
The path to the cache directory.
|
323
|
-
"""
|
324
|
-
return Path(self.__app.path('cache'))
|
325
|
-
|
326
|
-
def testing(self) -> Path:
|
187
|
+
def routes(self) -> Path:
|
327
188
|
"""
|
328
|
-
Get the
|
189
|
+
Get the routes directory.
|
329
190
|
|
330
191
|
Returns
|
331
192
|
-------
|
332
193
|
Path
|
333
|
-
|
194
|
+
Path object representing the routes directory.
|
334
195
|
"""
|
335
|
-
return Path(self.__app.path('
|
196
|
+
return Path(self.__app.path('routes'))
|
336
197
|
|
337
198
|
def storage(self) -> Path:
|
338
199
|
"""
|
339
|
-
Get the storage directory
|
200
|
+
Get the storage directory.
|
340
201
|
|
341
202
|
Returns
|
342
203
|
-------
|
343
204
|
Path
|
344
|
-
|
205
|
+
Path object representing the storage directory.
|
345
206
|
"""
|
346
207
|
return Path(self.__app.path('storage'))
|
347
208
|
|
348
209
|
def tests(self) -> Path:
|
349
210
|
"""
|
350
|
-
Get the tests directory
|
211
|
+
Get the tests directory.
|
351
212
|
|
352
213
|
Returns
|
353
214
|
-------
|
354
215
|
Path
|
355
|
-
|
216
|
+
Path object representing the tests directory.
|
356
217
|
"""
|
357
|
-
return Path(self.__app.path('tests'))
|
218
|
+
return Path(self.__app.path('tests'))
|
@@ -1,5 +1,4 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
orionis/app.py,sha256=W1N6EcVlqLLt631aAZ42sPQWhbGAtyJTAwFMU6sawm4,623
|
3
2
|
orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
3
|
orionis/console/kernel.py,sha256=NVWA20xasC8xE_fIoX5aKBy7dsrjgownQYarEOYiGKA,3752
|
5
4
|
orionis/console/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -33,7 +32,7 @@ orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewH
|
|
33
32
|
orionis/console/contracts/schedule.py,sha256=N-AYUa1CJY7a4CV9L1EX_EUDtGlDJMg4y0aV9EDby1Q,16090
|
34
33
|
orionis/console/contracts/schedule_event_listener.py,sha256=h06qsBxuEMD3KLSyu0JXdUDHlQW19BX9lA09Qrh2QXg,3818
|
35
34
|
orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
-
orionis/console/core/reactor.py,sha256
|
35
|
+
orionis/console/core/reactor.py,sha256=-Yf7EIrohU-2gnxJfqRvuhD49ITef64CKMECiTCx0eQ,43108
|
37
36
|
orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
37
|
orionis/console/dumper/debug.py,sha256=p8uflSXeDJDrVM9mZY4JMYEus73Z6TsLnQQtgP0QUak,22427
|
39
38
|
orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -81,7 +80,7 @@ orionis/container/enums/lifetimes.py,sha256=ntvF_cmmOWA0ujyxwdUmgJK7O6M9kCYlmrfc
|
|
81
80
|
orionis/container/exceptions/__init__.py,sha256=c0qlmC3qkcL_xUdxuEzF_KSl-PNF_BBzbgfkAv4Ao2o,363
|
82
81
|
orionis/container/exceptions/container.py,sha256=dV7GXPJDpGKAsqqxDvtQ9U21XF_VCGSy5p8Zy7PF2KM,2108
|
83
82
|
orionis/container/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
|
-
orionis/container/facades/facade.py,sha256=
|
83
|
+
orionis/container/facades/facade.py,sha256=c9V4ywJCdux1oluzVc7ph_8-TY2Nc85k3_UeQSBkiQY,3674
|
85
84
|
orionis/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
85
|
orionis/container/providers/service_provider.py,sha256=RqXpn8krFA3tt_m9CEG7-na7szp-zqfirO4DzpCHpF4,1685
|
87
86
|
orionis/container/validators/__init__.py,sha256=iJ_cY8U0EkpnZOU4_LANGKHFkvHeV0vH5bjbYr1fdSg,609
|
@@ -104,7 +103,7 @@ orionis/failure/contracts/handler.py,sha256=AeJfkJfD3hTkOIYAtADq6GnQfq-qWgDfUc7b
|
|
104
103
|
orionis/failure/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
104
|
orionis/failure/entities/throwable.py,sha256=1zD-awcuAyEtlR-L7V7ZIfPSF4GpXkf-neL5sXul7dc,1240
|
106
105
|
orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
|
-
orionis/foundation/application.py,sha256=
|
106
|
+
orionis/foundation/application.py,sha256=dXij7Rr49gESNtmTsnD6AikCF_z0Bio6Py9B7XVo1uY,80821
|
108
107
|
orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
108
|
orionis/foundation/config/startup.py,sha256=btqvryeIf9lLNQ9fBff7bJMrfraEY8qrWi4y_5YAR0Q,9681
|
110
109
|
orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -182,7 +181,7 @@ orionis/foundation/config/queue/entities/queue.py,sha256=YiWPeEg5e0fd_DJM2ogska6
|
|
182
181
|
orionis/foundation/config/queue/enums/__init__.py,sha256=oWY8GWwr5mex7szs_bLVqAS1jbyuIAvKl7XFGSlU9A0,64
|
183
182
|
orionis/foundation/config/queue/enums/strategy.py,sha256=S_kw7KZtoCk5FTOkbuXepdy_fOl9Eav4uT2K0OyzBa0,602
|
184
183
|
orionis/foundation/config/roots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
|
-
orionis/foundation/config/roots/paths.py,sha256=
|
184
|
+
orionis/foundation/config/roots/paths.py,sha256=rn2134pdSZ8CrK7haYZy_NitA09JZvcf1bkUtC5qP84,6964
|
186
185
|
orionis/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
186
|
orionis/foundation/config/session/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
187
|
orionis/foundation/config/session/entities/session.py,sha256=YGhXwzXm5BvDUG7zwlEYrZuVssqeS4J3B-afsR_SDYo,6086
|
@@ -198,7 +197,7 @@ orionis/foundation/config/testing/enums/drivers.py,sha256=mwv47FcKDXEOxydQXAGtkd
|
|
198
197
|
orionis/foundation/config/testing/enums/mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
|
199
198
|
orionis/foundation/config/testing/enums/verbosity.py,sha256=Z-FQ6C3rxbRwP8HoVibbgRMGcsen2SwTuEy3wnjdIhc,486
|
200
199
|
orionis/foundation/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
-
orionis/foundation/contracts/application.py,sha256=
|
200
|
+
orionis/foundation/contracts/application.py,sha256=WKJmbPjCpeGN1cs7IsUcW0zHS_IJNs8H2jvBEWuwdS4,45808
|
202
201
|
orionis/foundation/contracts/config.py,sha256=mCyA43f0n_e-CEL0f-sWWgE-M7GicS_aEtC_TNbn_yc,802
|
203
202
|
orionis/foundation/exceptions/__init__.py,sha256=ufomZK6am2-QAaj9peXW549xy_qflcbwj0ECuZz-1Kc,263
|
204
203
|
orionis/foundation/exceptions/application.py,sha256=mr2lVimUEwdYBYQP4PNdVtJ-E39XjPCJXyI-8SRCqtI,205
|
@@ -218,7 +217,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=irwkjMiq-HpsbJxAOnhjji
|
|
218
217
|
orionis/foundation/providers/testing_provider.py,sha256=2akFnabtH_cV_7z_2cCL7u8cPCGvCJAmlhMcnlCrc4c,3742
|
219
218
|
orionis/foundation/providers/workers_provider.py,sha256=P_YtJuPNrdJAQJkAqI11KI0c6GSB9NqIuuCKpRytE0g,3937
|
220
219
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
|
-
orionis/metadata/framework.py,sha256=
|
220
|
+
orionis/metadata/framework.py,sha256=EHhWZgwCLm14I7Y6s661osWICy9J0x1gjvJ3LLJvVwA,4109
|
222
221
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
223
222
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
223
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -249,9 +248,9 @@ orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFq
|
|
249
248
|
orionis/services/environment/validators/key_name.py,sha256=GeprPzhDUV8anTJW5r9pnzJ8ZxuGRTvMaZVdK59QSS0,1654
|
250
249
|
orionis/services/environment/validators/types.py,sha256=Q3mt77YP1Pzyw0HiGe2PiIUoUqHa3VTkWl5czYNZz1s,2833
|
251
250
|
orionis/services/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
|
-
orionis/services/file/directory.py,sha256=
|
251
|
+
orionis/services/file/directory.py,sha256=2qBkOPHxjiJLaT74MS9AX479nH7JZDlayLJd4v_Mhqs,5286
|
253
252
|
orionis/services/file/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
254
|
-
orionis/services/file/contracts/directory.py,sha256=
|
253
|
+
orionis/services/file/contracts/directory.py,sha256=5fkQcAaSjqkblgyEHSslAuijxzlGCeL3-0l-K2gja0k,4252
|
255
254
|
orionis/services/inspirational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
255
|
orionis/services/inspirational/inspire.py,sha256=dUxwkNLjKC4jdi06cVB1gfyB2zHjfgdhYhwKtsOTf0Q,4090
|
257
256
|
orionis/services/inspirational/quotes.py,sha256=9hCIEFE0DdfXLaGq_SzFpXlC2AbGSnuFLzyec4Rd1H0,53455
|
@@ -408,8 +407,8 @@ orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnI
|
|
408
407
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
409
408
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
410
409
|
orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
|
411
|
-
orionis-0.
|
412
|
-
orionis-0.
|
413
|
-
orionis-0.
|
414
|
-
orionis-0.
|
415
|
-
orionis-0.
|
410
|
+
orionis-0.584.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
411
|
+
orionis-0.584.0.dist-info/METADATA,sha256=0j0tqYU-XYluz0mNMRyIzsqUzVpb454jyEgEP27SPxM,4801
|
412
|
+
orionis-0.584.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
413
|
+
orionis-0.584.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
414
|
+
orionis-0.584.0.dist-info/RECORD,,
|
orionis/app.py
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
from orionis.foundation.application import Application, IApplication
|
2
|
-
|
3
|
-
def Orionis() -> IApplication:
|
4
|
-
"""
|
5
|
-
Instantiates and returns the main application object implementing the IApplication interface.
|
6
|
-
|
7
|
-
This function serves as a factory for creating the core Application instance, which manages
|
8
|
-
the lifecycle, configuration, and services of the Orionis framework.
|
9
|
-
|
10
|
-
Returns
|
11
|
-
-------
|
12
|
-
IApplication
|
13
|
-
An initialized instance of the Application class that implements the IApplication interface.
|
14
|
-
"""
|
15
|
-
|
16
|
-
# Create and return the main Application instance
|
17
|
-
return Application()
|
File without changes
|
File without changes
|
File without changes
|