aury-boot 0.0.4__py3-none-any.whl → 0.0.7__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.
- aury/boot/__init__.py +2 -2
- aury/boot/_version.py +2 -2
- aury/boot/application/__init__.py +60 -36
- aury/boot/application/adapter/__init__.py +112 -0
- aury/boot/application/adapter/base.py +511 -0
- aury/boot/application/adapter/config.py +242 -0
- aury/boot/application/adapter/decorators.py +259 -0
- aury/boot/application/adapter/exceptions.py +202 -0
- aury/boot/application/adapter/http.py +325 -0
- aury/boot/application/app/__init__.py +12 -8
- aury/boot/application/app/base.py +12 -0
- aury/boot/application/app/components.py +137 -44
- aury/boot/application/app/middlewares.py +9 -4
- aury/boot/application/app/startup.py +249 -0
- aury/boot/application/config/__init__.py +36 -1
- aury/boot/application/config/multi_instance.py +216 -0
- aury/boot/application/config/settings.py +398 -149
- aury/boot/application/constants/components.py +6 -0
- aury/boot/application/errors/handlers.py +17 -3
- aury/boot/application/middleware/logging.py +21 -120
- aury/boot/application/rpc/__init__.py +2 -2
- aury/boot/commands/__init__.py +30 -10
- aury/boot/commands/app.py +131 -1
- aury/boot/commands/docs.py +104 -17
- aury/boot/commands/generate.py +22 -22
- aury/boot/commands/init.py +68 -17
- aury/boot/commands/server/app.py +2 -3
- aury/boot/commands/templates/project/AGENTS.md.tpl +221 -0
- aury/boot/commands/templates/project/README.md.tpl +2 -2
- aury/boot/commands/templates/project/aury_docs/00-overview.md.tpl +59 -0
- aury/boot/commands/templates/project/aury_docs/01-model.md.tpl +184 -0
- aury/boot/commands/templates/project/aury_docs/02-repository.md.tpl +206 -0
- aury/boot/commands/templates/project/aury_docs/03-service.md.tpl +398 -0
- aury/boot/commands/templates/project/aury_docs/04-schema.md.tpl +95 -0
- aury/boot/commands/templates/project/aury_docs/05-api.md.tpl +116 -0
- aury/boot/commands/templates/project/aury_docs/06-exception.md.tpl +118 -0
- aury/boot/commands/templates/project/aury_docs/07-cache.md.tpl +122 -0
- aury/boot/commands/templates/project/aury_docs/08-scheduler.md.tpl +32 -0
- aury/boot/commands/templates/project/aury_docs/09-tasks.md.tpl +38 -0
- aury/boot/commands/templates/project/aury_docs/10-storage.md.tpl +115 -0
- aury/boot/commands/templates/project/aury_docs/11-logging.md.tpl +131 -0
- aury/boot/commands/templates/project/aury_docs/12-admin.md.tpl +56 -0
- aury/boot/commands/templates/project/aury_docs/13-channel.md.tpl +104 -0
- aury/boot/commands/templates/project/aury_docs/14-mq.md.tpl +102 -0
- aury/boot/commands/templates/project/aury_docs/15-events.md.tpl +147 -0
- aury/boot/commands/templates/project/aury_docs/16-adapter.md.tpl +403 -0
- aury/boot/commands/templates/project/{CLI.md.tpl → aury_docs/99-cli.md.tpl} +19 -19
- aury/boot/commands/templates/project/config.py.tpl +10 -10
- aury/boot/commands/templates/project/env_templates/_header.tpl +10 -0
- aury/boot/commands/templates/project/env_templates/admin.tpl +49 -0
- aury/boot/commands/templates/project/env_templates/cache.tpl +14 -0
- aury/boot/commands/templates/project/env_templates/database.tpl +22 -0
- aury/boot/commands/templates/project/env_templates/log.tpl +18 -0
- aury/boot/commands/templates/project/env_templates/messaging.tpl +46 -0
- aury/boot/commands/templates/project/env_templates/rpc.tpl +28 -0
- aury/boot/commands/templates/project/env_templates/scheduler.tpl +18 -0
- aury/boot/commands/templates/project/env_templates/service.tpl +18 -0
- aury/boot/commands/templates/project/env_templates/storage.tpl +38 -0
- aury/boot/commands/templates/project/env_templates/third_party.tpl +43 -0
- aury/boot/commands/templates/project/modules/tasks.py.tpl +1 -1
- aury/boot/common/logging/__init__.py +26 -674
- aury/boot/common/logging/context.py +132 -0
- aury/boot/common/logging/decorators.py +118 -0
- aury/boot/common/logging/format.py +315 -0
- aury/boot/common/logging/setup.py +214 -0
- aury/boot/contrib/admin_console/auth.py +2 -3
- aury/boot/contrib/admin_console/install.py +1 -1
- aury/boot/domain/models/mixins.py +48 -1
- aury/boot/domain/pagination/__init__.py +94 -0
- aury/boot/domain/repository/impl.py +1 -1
- aury/boot/domain/repository/interface.py +1 -1
- aury/boot/domain/transaction/__init__.py +8 -9
- aury/boot/infrastructure/__init__.py +86 -29
- aury/boot/infrastructure/cache/backends.py +102 -18
- aury/boot/infrastructure/cache/base.py +12 -0
- aury/boot/infrastructure/cache/manager.py +153 -91
- aury/boot/infrastructure/channel/__init__.py +24 -0
- aury/boot/infrastructure/channel/backends/__init__.py +9 -0
- aury/boot/infrastructure/channel/backends/memory.py +83 -0
- aury/boot/infrastructure/channel/backends/redis.py +88 -0
- aury/boot/infrastructure/channel/base.py +92 -0
- aury/boot/infrastructure/channel/manager.py +203 -0
- aury/boot/infrastructure/clients/__init__.py +22 -0
- aury/boot/infrastructure/clients/rabbitmq/__init__.py +9 -0
- aury/boot/infrastructure/clients/rabbitmq/config.py +46 -0
- aury/boot/infrastructure/clients/rabbitmq/manager.py +288 -0
- aury/boot/infrastructure/clients/redis/__init__.py +28 -0
- aury/boot/infrastructure/clients/redis/config.py +51 -0
- aury/boot/infrastructure/clients/redis/manager.py +264 -0
- aury/boot/infrastructure/database/config.py +7 -16
- aury/boot/infrastructure/database/manager.py +16 -38
- aury/boot/infrastructure/events/__init__.py +18 -21
- aury/boot/infrastructure/events/backends/__init__.py +11 -0
- aury/boot/infrastructure/events/backends/memory.py +86 -0
- aury/boot/infrastructure/events/backends/rabbitmq.py +193 -0
- aury/boot/infrastructure/events/backends/redis.py +162 -0
- aury/boot/infrastructure/events/base.py +127 -0
- aury/boot/infrastructure/events/manager.py +224 -0
- aury/boot/infrastructure/mq/__init__.py +24 -0
- aury/boot/infrastructure/mq/backends/__init__.py +9 -0
- aury/boot/infrastructure/mq/backends/rabbitmq.py +179 -0
- aury/boot/infrastructure/mq/backends/redis.py +167 -0
- aury/boot/infrastructure/mq/base.py +143 -0
- aury/boot/infrastructure/mq/manager.py +239 -0
- aury/boot/infrastructure/scheduler/manager.py +7 -3
- aury/boot/infrastructure/storage/__init__.py +9 -9
- aury/boot/infrastructure/storage/base.py +17 -5
- aury/boot/infrastructure/storage/factory.py +0 -1
- aury/boot/infrastructure/tasks/__init__.py +2 -2
- aury/boot/infrastructure/tasks/config.py +5 -13
- aury/boot/infrastructure/tasks/manager.py +55 -33
- {aury_boot-0.0.4.dist-info → aury_boot-0.0.7.dist-info}/METADATA +20 -2
- aury_boot-0.0.7.dist-info/RECORD +197 -0
- aury/boot/commands/templates/project/DEVELOPMENT.md.tpl +0 -1397
- aury/boot/commands/templates/project/env.example.tpl +0 -213
- aury/boot/infrastructure/events/bus.py +0 -362
- aury/boot/infrastructure/events/config.py +0 -52
- aury/boot/infrastructure/events/consumer.py +0 -134
- aury/boot/infrastructure/events/models.py +0 -63
- aury_boot-0.0.4.dist-info/RECORD +0 -137
- {aury_boot-0.0.4.dist-info → aury_boot-0.0.7.dist-info}/WHEEL +0 -0
- {aury_boot-0.0.4.dist-info → aury_boot-0.0.7.dist-info}/entry_points.txt +0 -0
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
"""任务队列配置。
|
|
2
2
|
|
|
3
|
-
Infrastructure
|
|
3
|
+
Infrastructure 层配置数据类,由 application 层传入。
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
6
|
from __future__ import annotations
|
|
7
7
|
|
|
8
|
-
from pydantic import Field
|
|
9
|
-
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
8
|
+
from pydantic import BaseModel, Field
|
|
10
9
|
|
|
11
10
|
|
|
12
|
-
class TaskConfig(
|
|
11
|
+
class TaskConfig(BaseModel):
|
|
13
12
|
"""任务队列基础设施配置。
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
环境变量前缀: TASK_
|
|
18
|
-
示例: TASK_BROKER_URL, TASK_MAX_RETRIES
|
|
14
|
+
纯数据类,由 application 层构造并传入 infrastructure 层。
|
|
15
|
+
不直接读取环境变量。
|
|
19
16
|
"""
|
|
20
17
|
|
|
21
18
|
broker_url: str = Field(
|
|
@@ -30,11 +27,6 @@ class TaskConfig(BaseSettings):
|
|
|
30
27
|
default=3600000,
|
|
31
28
|
description="任务执行时间限制(毫秒)"
|
|
32
29
|
)
|
|
33
|
-
|
|
34
|
-
model_config = SettingsConfigDict(
|
|
35
|
-
env_prefix="TASK_",
|
|
36
|
-
case_sensitive=False,
|
|
37
|
-
)
|
|
38
30
|
|
|
39
31
|
|
|
40
32
|
__all__ = [
|
|
@@ -47,16 +47,16 @@ except ImportError:
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
class TaskProxy:
|
|
50
|
-
"""任务代理类,用于在 API
|
|
50
|
+
"""任务代理类,用于在 API 模式下发送消息而不注册任务。
|
|
51
51
|
|
|
52
|
-
在 API
|
|
52
|
+
在 API 服务中,我们不希望注册任务(因为 worker 已经注册了),
|
|
53
53
|
但仍然需要能够发送任务消息。TaskProxy 提供了这个功能。
|
|
54
54
|
|
|
55
55
|
使用示例:
|
|
56
|
-
@
|
|
57
|
-
|
|
58
|
-
# 在 worker
|
|
59
|
-
# 在 API
|
|
56
|
+
@conditional_task(queue_name="default")
|
|
57
|
+
def send_email(to: str, subject: str):
|
|
58
|
+
# 在 worker 中执行任务
|
|
59
|
+
# 在 API 中只发送不执行
|
|
60
60
|
pass
|
|
61
61
|
|
|
62
62
|
# API 模式下发送任务
|
|
@@ -210,20 +210,21 @@ class TaskManager:
|
|
|
210
210
|
broker_url: str | None = None,
|
|
211
211
|
*,
|
|
212
212
|
middleware: list | None = None,
|
|
213
|
-
) ->
|
|
214
|
-
"""
|
|
213
|
+
) -> TaskManager:
|
|
214
|
+
"""初始化任务队列(链式调用)。
|
|
215
215
|
|
|
216
216
|
Args:
|
|
217
217
|
task_config: 任务配置(TaskConfig)
|
|
218
218
|
run_mode: 运行模式(TaskRunMode 或字符串,如 "api", "worker")
|
|
219
219
|
broker_url: Broker连接URL(可选,优先使用 config)
|
|
220
220
|
middleware: 中间件列表
|
|
221
|
+
|
|
222
|
+
Returns:
|
|
223
|
+
self: 支持链式调用
|
|
221
224
|
"""
|
|
222
225
|
if self._initialized:
|
|
223
226
|
logger.warning("任务管理器已初始化,跳过")
|
|
224
|
-
return
|
|
225
|
-
|
|
226
|
-
self._task_config = task_config or TaskConfig()
|
|
227
|
+
return self
|
|
227
228
|
|
|
228
229
|
# 处理 run_mode 参数
|
|
229
230
|
if run_mode is None:
|
|
@@ -237,11 +238,17 @@ class TaskManager:
|
|
|
237
238
|
else:
|
|
238
239
|
self._run_mode = run_mode
|
|
239
240
|
|
|
240
|
-
# 获取 broker URL(优先级:参数 >
|
|
241
|
-
url = broker_url or
|
|
241
|
+
# 获取 broker URL(优先级:参数 > 配置)
|
|
242
|
+
url = broker_url or (task_config.broker_url if task_config else None)
|
|
243
|
+
|
|
244
|
+
# 保存配置(如果没有传入,从 broker_url 构造)
|
|
245
|
+
if task_config:
|
|
246
|
+
self._task_config = task_config
|
|
247
|
+
elif url:
|
|
248
|
+
self._task_config = TaskConfig(broker_url=url)
|
|
242
249
|
if not url:
|
|
243
250
|
logger.warning("未配置任务队列URL,任务功能将被禁用")
|
|
244
|
-
return
|
|
251
|
+
return self
|
|
245
252
|
|
|
246
253
|
if not _DRAMATIQ_AVAILABLE:
|
|
247
254
|
raise ImportError(
|
|
@@ -269,6 +276,8 @@ class TaskManager:
|
|
|
269
276
|
except Exception as exc:
|
|
270
277
|
logger.error(f"任务队列初始化失败: {exc}")
|
|
271
278
|
raise
|
|
279
|
+
|
|
280
|
+
return self
|
|
272
281
|
|
|
273
282
|
def task(
|
|
274
283
|
self,
|
|
@@ -415,29 +424,39 @@ class TaskManager:
|
|
|
415
424
|
return f"<TaskManager status={status}>"
|
|
416
425
|
|
|
417
426
|
|
|
418
|
-
def
|
|
427
|
+
def conditional_task(
|
|
428
|
+
func: Callable | None = None,
|
|
429
|
+
/,
|
|
419
430
|
queue_name: str = TaskQueueName.DEFAULT.value,
|
|
420
431
|
run_mode: TaskRunMode | str | None = None,
|
|
421
432
|
**kwargs: Any,
|
|
422
|
-
) -> Callable[[Callable], Any]:
|
|
423
|
-
"""
|
|
433
|
+
) -> Callable[[Callable], Any] | Any:
|
|
434
|
+
"""条件注册的任务装饰器。
|
|
435
|
+
|
|
436
|
+
根据运行模式决定行为:
|
|
437
|
+
- worker 模式:正常注册为任务执行者
|
|
438
|
+
- producer 模式:返回 TaskProxy,可发送任务但不注册
|
|
424
439
|
|
|
425
|
-
|
|
426
|
-
|
|
440
|
+
支持两种使用方式:
|
|
441
|
+
- @conditional_task # 无括号
|
|
442
|
+
- @conditional_task() # 带括号
|
|
427
443
|
|
|
428
444
|
Args:
|
|
445
|
+
func: 被装饰的函数(无括号调用时自动传入)
|
|
429
446
|
queue_name: 队列名称
|
|
430
447
|
run_mode: 运行模式(TaskRunMode 或字符串),默认为 WORKER
|
|
431
|
-
**kwargs:
|
|
448
|
+
**kwargs: 其他参数(如 max_retries, time_limit)
|
|
432
449
|
|
|
433
450
|
使用示例:
|
|
434
|
-
@
|
|
435
|
-
|
|
436
|
-
# 在 worker 中会注册为 actor
|
|
437
|
-
# 在 producer 中会返回 TaskProxy
|
|
451
|
+
@conditional_task
|
|
452
|
+
def send_email(to: str, subject: str):
|
|
438
453
|
pass
|
|
439
454
|
|
|
440
|
-
|
|
455
|
+
@conditional_task(queue_name="high", max_retries=5)
|
|
456
|
+
def send_sms(phone: str, message: str):
|
|
457
|
+
pass
|
|
458
|
+
|
|
459
|
+
# 发送任务到队列
|
|
441
460
|
send_email.send("user@example.com", "Hello")
|
|
442
461
|
"""
|
|
443
462
|
if not _DRAMATIQ_AVAILABLE:
|
|
@@ -445,7 +464,7 @@ def conditional_actor(
|
|
|
445
464
|
"dramatiq 未安装。请安装可选依赖: pip install 'aury-boot[queue-dramatiq]'"
|
|
446
465
|
)
|
|
447
466
|
|
|
448
|
-
def decorator(
|
|
467
|
+
def decorator(f: Callable) -> Any:
|
|
449
468
|
# 处理 run_mode 参数,默认为 WORKER
|
|
450
469
|
if run_mode is None:
|
|
451
470
|
mode = TaskRunMode.WORKER
|
|
@@ -460,31 +479,34 @@ def conditional_actor(
|
|
|
460
479
|
|
|
461
480
|
if mode == TaskRunMode.WORKER:
|
|
462
481
|
# Worker 模式下正常注册(执行者)
|
|
463
|
-
return dramatiq.actor(queue_name=queue_name, **kwargs)(
|
|
482
|
+
return dramatiq.actor(queue_name=queue_name, **kwargs)(f)
|
|
464
483
|
else:
|
|
465
484
|
# Producer 模式下返回代理对象,不注册但可以发送消息
|
|
466
485
|
# 获取函数的完整模块路径作为 actor_name
|
|
467
|
-
module_name =
|
|
468
|
-
func_name =
|
|
469
|
-
|
|
486
|
+
module_name = f.__module__
|
|
487
|
+
func_name = f.__name__
|
|
488
|
+
full_actor_name = f"{module_name}.{func_name}"
|
|
470
489
|
|
|
471
490
|
# 获取全局 broker(如果已设置)
|
|
472
491
|
broker = dramatiq.get_broker() if hasattr(dramatiq, "get_broker") else None
|
|
473
492
|
|
|
474
493
|
return TaskProxy(
|
|
475
|
-
func=
|
|
494
|
+
func=f,
|
|
476
495
|
queue_name=queue_name,
|
|
477
|
-
actor_name=
|
|
496
|
+
actor_name=full_actor_name,
|
|
478
497
|
broker=broker,
|
|
479
498
|
**kwargs,
|
|
480
499
|
)
|
|
481
500
|
|
|
501
|
+
# 支持 @conditional_task 和 @conditional_task() 两种写法
|
|
502
|
+
if func is not None:
|
|
503
|
+
return decorator(func)
|
|
482
504
|
return decorator
|
|
483
505
|
|
|
484
506
|
|
|
485
507
|
__all__ = [
|
|
486
508
|
"TaskManager",
|
|
487
509
|
"TaskProxy",
|
|
488
|
-
"
|
|
510
|
+
"conditional_task",
|
|
489
511
|
]
|
|
490
512
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aury-boot
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Aury Boot - 基于 FastAPI 生态的企业级 API 开发框架
|
|
5
5
|
Requires-Python: >=3.13
|
|
6
6
|
Requires-Dist: alembic>=1.17.2
|
|
@@ -49,6 +49,7 @@ Requires-Dist: asyncpg>=0.31.0; extra == 'postgres'
|
|
|
49
49
|
Provides-Extra: rabbitmq
|
|
50
50
|
Requires-Dist: amqp>=5.3.1; extra == 'rabbitmq'
|
|
51
51
|
Provides-Extra: recommended
|
|
52
|
+
Requires-Dist: aiosqlite>=0.21.0; extra == 'recommended'
|
|
52
53
|
Requires-Dist: apscheduler>=3.11.1; extra == 'recommended'
|
|
53
54
|
Requires-Dist: asyncpg>=0.31.0; extra == 'recommended'
|
|
54
55
|
Requires-Dist: aury-sdk-storage[aws]>=0.0.1; extra == 'recommended'
|
|
@@ -72,7 +73,24 @@ Description-Content-Type: text/markdown
|
|
|
72
73
|
|
|
73
74
|
# Aury Boot
|
|
74
75
|
|
|
75
|
-
|
|
76
|
+
基于 FastAPI 生态的企业级 API 开发框架,提供所有微服务共用的基础设施组件。
|
|
77
|
+
|
|
78
|
+
## 快速开始
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
# 1. 创建项目目录并初始化
|
|
82
|
+
mkdir my-service && cd my-service
|
|
83
|
+
uv init . --name my_service --no-package --python 3.13
|
|
84
|
+
|
|
85
|
+
# 2. 添加依赖
|
|
86
|
+
uv add "aury-boot[recommended,admin]" # admin 可选,提供 SQLAdmin 管理后台
|
|
87
|
+
|
|
88
|
+
# 3. 初始化项目结构
|
|
89
|
+
aury init
|
|
90
|
+
|
|
91
|
+
# 4. 启动开发服务器
|
|
92
|
+
aury server dev
|
|
93
|
+
```
|
|
76
94
|
|
|
77
95
|
## 功能模块
|
|
78
96
|
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
aury/boot/__init__.py,sha256=pCno-EInnpIBa1OtxNYF-JWf9j95Cd2h6vmu0xqa_-4,1791
|
|
2
|
+
aury/boot/_version.py,sha256=AV58KqMkBGaCvmPdbd3g9huyNXfIVxjw8QbCMdaeivU,704
|
|
3
|
+
aury/boot/application/__init__.py,sha256=0o_XmiwFCeAu06VHggS8I1e7_nSMoRq0Hcm0fYfCywU,3071
|
|
4
|
+
aury/boot/application/adapter/__init__.py,sha256=e1bcSb1bxUMfofTwiCuHBZJk5-STkMCWPF2EJXHQ7UU,3976
|
|
5
|
+
aury/boot/application/adapter/base.py,sha256=Ar_66fiHPDEmV-1DKnqXKwc53p3pozG31bgTJTEUriY,15763
|
|
6
|
+
aury/boot/application/adapter/config.py,sha256=X6ppQMldyJbEdG1GcQSc2SulLtyeBTr8OAboYIjkSu0,8153
|
|
7
|
+
aury/boot/application/adapter/decorators.py,sha256=yyGu_16bWWUiO36gxCeQWgG0DN19p5PqjHQan_Fvi0A,8959
|
|
8
|
+
aury/boot/application/adapter/exceptions.py,sha256=Kzm-ytRxdUnSMIcWCSOHPxo4Jh_A6YbyxlOVIUs-5F4,6183
|
|
9
|
+
aury/boot/application/adapter/http.py,sha256=4TADsSzdSRU63307dmmo-2U_JpVP12mwTFy66B5Ps-w,10759
|
|
10
|
+
aury/boot/application/app/__init__.py,sha256=I8FfCKDuDQsGzAK6BevyfdtAwieMUVYu6qgVQzBazpE,830
|
|
11
|
+
aury/boot/application/app/base.py,sha256=5v7wtksCCyp_QYVpxddd9xSujoVp1zX9pP6CPy4vwUE,16711
|
|
12
|
+
aury/boot/application/app/components.py,sha256=tt4a4ZVcRJZbvStj5W9AYf9omGqKVu0qFu5pn1q2VSU,20312
|
|
13
|
+
aury/boot/application/app/middlewares.py,sha256=BXe2H14FHzJUVpQM6DZUm-zfZRXSXIi1QIZ4_3izfHw,3306
|
|
14
|
+
aury/boot/application/app/startup.py,sha256=bkRT4cCzXPnTOBSNs-TLcKvFGwqBgwXeO8_gQq9Gc1s,7895
|
|
15
|
+
aury/boot/application/config/__init__.py,sha256=Dd-myRSBCM18DXXsi863h0cJG5VFrI10xMRtjnvelGo,1894
|
|
16
|
+
aury/boot/application/config/multi_instance.py,sha256=RXSp-xP8-bKMDEhq3SeL7T3lS8-vpRlvBEVBuZVjVK4,6475
|
|
17
|
+
aury/boot/application/config/settings.py,sha256=n2VorLbdmiY2uKSIbZJYSrEKkUq043FpnGWaXIxhWSI,29195
|
|
18
|
+
aury/boot/application/constants/__init__.py,sha256=DCXs13_VVaQWHqO-qpJoZwRd7HIexiirtw_nu8msTXE,340
|
|
19
|
+
aury/boot/application/constants/components.py,sha256=hDRs3YxpnfIFcGaUa1DYqBRwmV2_dceOlcCXabHE3fk,1006
|
|
20
|
+
aury/boot/application/constants/scheduler.py,sha256=S77FBIvHlyruvlabRWZJ2J1YAs2xWXPQI2yuGdGUDNA,471
|
|
21
|
+
aury/boot/application/constants/service.py,sha256=_BjSNP83m1KuLcGs1oqciDU9Nk1mO45COucRYubuFkM,513
|
|
22
|
+
aury/boot/application/errors/__init__.py,sha256=aYhGqjHayYr7sv9kM22y0sOo9R-8RK0r3Jf5_tgm7TQ,1217
|
|
23
|
+
aury/boot/application/errors/chain.py,sha256=DSLZvPH7oNcxE26j3hiXG_1W7-3fdKyu0QMEEi1c5CY,2306
|
|
24
|
+
aury/boot/application/errors/codes.py,sha256=CBR8umCSNp1zUslwK9tboQ4s753qBwA1OpefaQTPdjE,1431
|
|
25
|
+
aury/boot/application/errors/exceptions.py,sha256=5gHC9cQsuvNpO5V9GlFkb-QqH0xNqQaOKBmTBM5wYEI,7303
|
|
26
|
+
aury/boot/application/errors/handlers.py,sha256=wPYiiDkJGNxJjXL442KhPAg4rLTq-GSISmVEa6nHmiE,11129
|
|
27
|
+
aury/boot/application/errors/response.py,sha256=fqOO3bNTnRRjoN3gK0-6xBVAYfSqyPvUbONowAecq9k,3107
|
|
28
|
+
aury/boot/application/interfaces/__init__.py,sha256=EGbiCL8IoGseylLVZO29Lkt3luygG7JknTgtAxeb48U,1438
|
|
29
|
+
aury/boot/application/interfaces/egress.py,sha256=t8FK17V649rsm65uAeBruYr2mhfcqJiIzkS8UPsOzlc,5346
|
|
30
|
+
aury/boot/application/interfaces/ingress.py,sha256=rlflJ4nxAZ2Mc3Iy8ZX__GRgfAWcMYYzLhHL2NSk4_U,2425
|
|
31
|
+
aury/boot/application/middleware/__init__.py,sha256=T01fmbcdO0Sm6JE74g23uuDyebBGYA4DMZMDBl0L00w,258
|
|
32
|
+
aury/boot/application/middleware/logging.py,sha256=VXd472GJpOQ_n54896tQHauoPSdXyklGD_ZgMoIKsHQ,12633
|
|
33
|
+
aury/boot/application/migrations/__init__.py,sha256=Z5Gizx7f3AImRcl3cooiIDAZcNi5W-6GvB7mK5w1TNA,204
|
|
34
|
+
aury/boot/application/migrations/manager.py,sha256=G7mzkNA3MFjyQmM2UwY0ZFNgGGVS4W5GoG2Sbj5AUXk,23685
|
|
35
|
+
aury/boot/application/migrations/setup.py,sha256=P89QSMV2JQQb1FuyA9KHhgqSzKWZneCmOtOrLvEmKYQ,6261
|
|
36
|
+
aury/boot/application/rpc/__init__.py,sha256=0mVyksLbTOLYMN4OtYrdf9naBNVQnAU9pt2kS2w_9ZY,2064
|
|
37
|
+
aury/boot/application/rpc/base.py,sha256=KqdWupF2PTizr--jE0KgJUDCfBap72ZWk9FtU5FM9_8,2618
|
|
38
|
+
aury/boot/application/rpc/client.py,sha256=ApW4h_DrwnnkAh921TVUd4fvdWP-rVIse3VW1_1TLPk,9113
|
|
39
|
+
aury/boot/application/rpc/discovery.py,sha256=nDCWGeJBNX_RO8JrRnlF7yMEBHZy9vXg_fchvI2CJOc,6624
|
|
40
|
+
aury/boot/application/scheduler/__init__.py,sha256=MBAKQMqI6HpkTPqWyZrbfgRck9AjVfywS9lxjNXFdpE,201
|
|
41
|
+
aury/boot/application/scheduler/runner.py,sha256=g8CM5bDtjiiaMV3662fAOAzh4_bzlQlQZYXj8vlbtc0,3796
|
|
42
|
+
aury/boot/application/server/__init__.py,sha256=WgSeWItN6oXUzYr1rflGreFiASkLXVt0Z3qkGGtLTI0,8964
|
|
43
|
+
aury/boot/commands/__init__.py,sha256=8HqWCNefFDk1I-NyViUfCYjynzV7YsdnIsbgoj_sJjo,1486
|
|
44
|
+
aury/boot/commands/add.py,sha256=JRJir92oFHwIBtIKKEjQ7trUhfb9-kCH84x_7saV2gI,2647
|
|
45
|
+
aury/boot/commands/app.py,sha256=-kHcWdZ_D4xDwjOiUkcNSCTYKIUYz39HJV87eaZpeY8,7557
|
|
46
|
+
aury/boot/commands/config.py,sha256=gPkG_jSWrXidjpyVdzABH7uRhoCgX5yrOcdKabtX5wY,4928
|
|
47
|
+
aury/boot/commands/docker.py,sha256=7mKorZCPZgxH1XFslzo6W-uzpe61hGXz86JKOhOeBlo,9006
|
|
48
|
+
aury/boot/commands/docs.py,sha256=-uCvrKj0_shdeBY08W6zx5vNpsBM3yc_IIOOQzoFbqE,11647
|
|
49
|
+
aury/boot/commands/generate.py,sha256=WZieSXuofxJOC7NBiVGpBigB9NZ4GMcF2F1ReTNun1I,44420
|
|
50
|
+
aury/boot/commands/init.py,sha256=HcfBLaU3MwF0tSRTVUEUEA__INwB_cbF7DKRPQ_1Lf0,32358
|
|
51
|
+
aury/boot/commands/scheduler.py,sha256=BCIGQcGryXpsYNF-mncP6v5kNoz6DZ10DMzMKVDiXxA,3516
|
|
52
|
+
aury/boot/commands/worker.py,sha256=qAcPdoKpMBLYoi45X_y2-nobuYKxscJpooEB_0HhM4o,4163
|
|
53
|
+
aury/boot/commands/migrate/__init__.py,sha256=W9OhkX8ILdolySofgdP2oYoJGG9loQd5FeSwkniU3qM,455
|
|
54
|
+
aury/boot/commands/migrate/app.py,sha256=phCMKW6cuFYW2wr6PSMSCq0K2uUCiYo3UiFd0_UvA_o,1327
|
|
55
|
+
aury/boot/commands/migrate/commands.py,sha256=892htS_pTtpejLGqRP8bc3xXJPG92WwAejHlY74oI3o,9950
|
|
56
|
+
aury/boot/commands/server/__init__.py,sha256=aP3bPNGn6wT8dHa_OmKw1Dexnxuvf0BhrGA6pEUcsVM,319
|
|
57
|
+
aury/boot/commands/server/app.py,sha256=-A52dLgerab98IM50a-_ptFb0xlMvbdbhYjqoJIIIpU,15795
|
|
58
|
+
aury/boot/commands/templates/generate/api.py.tpl,sha256=xTbk9uzn5IMtJ-SPMadjmOUNHoM3WoE6g-TIEsGHFUA,3153
|
|
59
|
+
aury/boot/commands/templates/generate/model.py.tpl,sha256=knFwMyGZ7wMpzH4_bQD_V1hFTvmCb2H04G8p3s2xvyA,312
|
|
60
|
+
aury/boot/commands/templates/generate/repository.py.tpl,sha256=xoEg6lPAaLIRDeFy4I0FBsPPVLSy91h6xosAlaCL_mM,590
|
|
61
|
+
aury/boot/commands/templates/generate/schema.py.tpl,sha256=HIaY5B0UG_S188nQLrZDEJ0q73WPdb7BmCdc0tseZA4,545
|
|
62
|
+
aury/boot/commands/templates/generate/service.py.tpl,sha256=2hwQ8e4a5d_bIMx_jGDobdmKPMFLBlfQrQVQH4Ym5k4,1842
|
|
63
|
+
aury/boot/commands/templates/project/AGENTS.md.tpl,sha256=lzRh23-8Buw5JgZ_BRuMH15gh6WmxJRU4dbZ57fyntA,7309
|
|
64
|
+
aury/boot/commands/templates/project/README.md.tpl,sha256=oCeBiukk6Pa3hrCKybkfM2sIRHsPZ15nlwuFTUSFDwY,2459
|
|
65
|
+
aury/boot/commands/templates/project/admin_console_init.py.tpl,sha256=K81L14thyEhRA8lFCQJVZL_NU22-sBz0xS68MJPeoCo,1541
|
|
66
|
+
aury/boot/commands/templates/project/config.py.tpl,sha256=ZCZHHvTOv3dm0VcJqmqkvoIEzKoBBcfne_UYnqimc7s,869
|
|
67
|
+
aury/boot/commands/templates/project/conftest.py.tpl,sha256=chbETK81Hy26cWz6YZ2cFgy7HbnABzYCqeyMzgpa3eI,726
|
|
68
|
+
aury/boot/commands/templates/project/gitignore.tpl,sha256=OI0nt9u2E9EC-jAMoh3gpqamsWo18uDgyPybgee_snQ,3053
|
|
69
|
+
aury/boot/commands/templates/project/main.py.tpl,sha256=qKKgO3btMPIpPfb-iyCD4AMEYMUunhq6GJyA2QplGZI,922
|
|
70
|
+
aury/boot/commands/templates/project/aury_docs/00-overview.md.tpl,sha256=8Aept3yEAe9cVdRvkddr_oEF-lr2riPXYRzBuw_6DBA,2138
|
|
71
|
+
aury/boot/commands/templates/project/aury_docs/01-model.md.tpl,sha256=1mQ3hGDxqEZjev4CD5-3dzYRFVonPNcAaStI1UBEUyM,6811
|
|
72
|
+
aury/boot/commands/templates/project/aury_docs/02-repository.md.tpl,sha256=yfKPYZ7x74BEF7wFp9u3S7xKr4Ld9MqXOItGZo5NM9Q,6819
|
|
73
|
+
aury/boot/commands/templates/project/aury_docs/03-service.md.tpl,sha256=Dg_8RGSeRmmyQrhhpppEoxl-6C5pNe9M2OzVOl1kjSk,13102
|
|
74
|
+
aury/boot/commands/templates/project/aury_docs/04-schema.md.tpl,sha256=ZwwKhUbLI--PEEmwnuo2fIZrhCEZagBN6fRNDTFCnNk,2891
|
|
75
|
+
aury/boot/commands/templates/project/aury_docs/05-api.md.tpl,sha256=oPzda3V6ZPDDEW-5MwyzmsMRuu5mXrsRGEq3lj0M-58,2997
|
|
76
|
+
aury/boot/commands/templates/project/aury_docs/06-exception.md.tpl,sha256=Tv_Q5lsScHzvtcaFWmuQzN4YqvpcWZIdXS8jw99K29E,3340
|
|
77
|
+
aury/boot/commands/templates/project/aury_docs/07-cache.md.tpl,sha256=EQMI7vJIwJT-VdG4p1GMCDEo58DCO1n6V-MvUzGSaS0,3411
|
|
78
|
+
aury/boot/commands/templates/project/aury_docs/08-scheduler.md.tpl,sha256=zk7RHjtx_QGjmeLy04Nk_qSc8sofTrubS2Tg7DxfEl4,858
|
|
79
|
+
aury/boot/commands/templates/project/aury_docs/09-tasks.md.tpl,sha256=swHOQ_pWPtW8Bsy1arPu2OeIgs1FoKsJ2AsVSYUWPHY,931
|
|
80
|
+
aury/boot/commands/templates/project/aury_docs/10-storage.md.tpl,sha256=5zamjmVxp3q16De1w_il2vdzEho1O_FoZBN8PIVp2aI,2976
|
|
81
|
+
aury/boot/commands/templates/project/aury_docs/11-logging.md.tpl,sha256=jdczsKrQuvS3KbR2KdfCu0fUbFNbvP8DHzfYASV-4N0,3397
|
|
82
|
+
aury/boot/commands/templates/project/aury_docs/12-admin.md.tpl,sha256=6z3mN54qP2jtpTFOJBLVexvEv0ZHXYKjncvpZG4yOdw,1883
|
|
83
|
+
aury/boot/commands/templates/project/aury_docs/13-channel.md.tpl,sha256=rdtlog3ajcSsT0fq9a_US3MPcZhTvDo72eT6hetg4aI,3376
|
|
84
|
+
aury/boot/commands/templates/project/aury_docs/14-mq.md.tpl,sha256=4bxLQBbCi0Fue0VQWOPt6acZ5P00BoLkCoLPQe_8k4U,2396
|
|
85
|
+
aury/boot/commands/templates/project/aury_docs/15-events.md.tpl,sha256=a4wQRgVPuYUGTGmw_lX1HJH_yFTbD30mBz7Arc4zgfs,3361
|
|
86
|
+
aury/boot/commands/templates/project/aury_docs/16-adapter.md.tpl,sha256=wPbDKoIMw-d-wwvSWHGm0OF4r9PtoAsQWwTK0BJESCA,11377
|
|
87
|
+
aury/boot/commands/templates/project/aury_docs/99-cli.md.tpl,sha256=s0tIhVEi7N9AOABGsFx0hD1g6YutG5ehAG0XMQQva0E,3020
|
|
88
|
+
aury/boot/commands/templates/project/env_templates/_header.tpl,sha256=Pt0X_I25o1th3CLR228L2-nlcC-lIkN8cPailohBEkU,513
|
|
89
|
+
aury/boot/commands/templates/project/env_templates/admin.tpl,sha256=wWt3iybOpBHtuw6CkoUJ1bzEL0aNgOzKDEkMKhI2oag,2032
|
|
90
|
+
aury/boot/commands/templates/project/env_templates/cache.tpl,sha256=_sK-p_FECj4mVvggNvgb4Wu0yGii0Ocz560syG7DU2c,498
|
|
91
|
+
aury/boot/commands/templates/project/env_templates/database.tpl,sha256=2lWzTKt4X0SpeBBCkrDV90Di4EfoAuqYzhVsh74vTUI,907
|
|
92
|
+
aury/boot/commands/templates/project/env_templates/log.tpl,sha256=Rw1yQ9xYvjoXHEqahDuCYzuaV2A2U9G98gmZ85k30RQ,604
|
|
93
|
+
aury/boot/commands/templates/project/env_templates/messaging.tpl,sha256=ICRLGw2FtJ0bNtkHnpy0CFyILqxOfFLbfejdFLJuuo8,1719
|
|
94
|
+
aury/boot/commands/templates/project/env_templates/rpc.tpl,sha256=jdiHHTosY24kpgwXAwJbmAxkd_0WI2rTSn3JLhdvgGc,1159
|
|
95
|
+
aury/boot/commands/templates/project/env_templates/scheduler.tpl,sha256=c8Grcs1rgBB58RHlxqmDMPHQl8BnbcqNW473ctmsojU,752
|
|
96
|
+
aury/boot/commands/templates/project/env_templates/service.tpl,sha256=b-a2GyRyoaunbDj_2kaSw3OFxcugscmPvUBG7w0XO8c,710
|
|
97
|
+
aury/boot/commands/templates/project/env_templates/storage.tpl,sha256=x983u0Y2AFTTO2JqtPsYmYKBNGXtGCknA4iHv0k2wSA,1330
|
|
98
|
+
aury/boot/commands/templates/project/env_templates/third_party.tpl,sha256=HsQStCB9_QOGjDhrqhbe9UqNKtnzQ7E21yLHu6w-LOg,1951
|
|
99
|
+
aury/boot/commands/templates/project/modules/api.py.tpl,sha256=G_IE-UC_pRhN7oOxy3dl_VLmR_omlKmHhWYi-AlyZIQ,471
|
|
100
|
+
aury/boot/commands/templates/project/modules/exceptions.py.tpl,sha256=TKY3XaQU50Z-sDHWi3_Ns-A4v50PFru08H2lzmKxAUw,2646
|
|
101
|
+
aury/boot/commands/templates/project/modules/schedules.py.tpl,sha256=P-R-0SDsoQ_lWfKYJXZT5DoNAVKGUjYiC3HBbUZCc3Y,633
|
|
102
|
+
aury/boot/commands/templates/project/modules/tasks.py.tpl,sha256=w16VsW0K1_ukZe1Md2A_DnNPCAQUTNuo1JYfHOb7ZTI,564
|
|
103
|
+
aury/boot/common/__init__.py,sha256=MhNP3c_nwx8CyDkDF6p1f4DcTZ1CZZScg66FWdbdaZI,629
|
|
104
|
+
aury/boot/common/exceptions/__init__.py,sha256=aS3rIXWc5qNNJbfMs_PNmBlFsyNdKUMErziNMd1yoB8,3176
|
|
105
|
+
aury/boot/common/i18n/__init__.py,sha256=2cy4kteU-1YsAHkuMDTr2c5o4G33fvtYUGKtzEy1Q6c,394
|
|
106
|
+
aury/boot/common/i18n/translator.py,sha256=_vEDL2SjEI1vwMNHbnJb0xErKUPLm7VmhyOuMBeCqRM,8412
|
|
107
|
+
aury/boot/common/logging/__init__.py,sha256=lRbIZCeKavzO90Fx7FrGW1AAqAg8TX5VrDo0pWA4Af0,1661
|
|
108
|
+
aury/boot/common/logging/context.py,sha256=WHPpfqHH0HIbaSPdpESjB5kV344ygDfrdrcOmDXz1JI,3842
|
|
109
|
+
aury/boot/common/logging/decorators.py,sha256=UaGMhRJdARNJ2VgCuRwaNX0DD5wIc1gAl6NDj7u8K2c,3354
|
|
110
|
+
aury/boot/common/logging/format.py,sha256=V1VoZCPFAaAXy20n3WehOsZGTHuboYMHnSFGa0GxhdU,9648
|
|
111
|
+
aury/boot/common/logging/setup.py,sha256=XPeoyFeIrsX8GbAFhBMccm_t1Zlh7_RcDl4_CqRLZtk,6864
|
|
112
|
+
aury/boot/contrib/__init__.py,sha256=fyk_St9VufIx64hsobv9EsOYzb_T5FbJHxjqtPds4g8,198
|
|
113
|
+
aury/boot/contrib/admin_console/__init__.py,sha256=HEesLFrtYtBFWTDrh5H3mR-4V4LRg5N4a2a1C4-Whgs,445
|
|
114
|
+
aury/boot/contrib/admin_console/auth.py,sha256=_goyjZ8Clssvmy8g84svenGfBqCe9OC5pIvCjIzt42g,4706
|
|
115
|
+
aury/boot/contrib/admin_console/discovery.py,sha256=W5DLR4lXDomoB1DLN_zMs5m_uO8Q3qiyqR0rtZE-Vjg,2559
|
|
116
|
+
aury/boot/contrib/admin_console/install.py,sha256=iy_ozt1naSTaNRDhHhbPbAGXwnVoZigBSdga1FTrpVw,6828
|
|
117
|
+
aury/boot/contrib/admin_console/utils.py,sha256=R3gZ5nZeWALggaGAm-h4p5SWbKJV0xbD-2U7GyRkzyE,1459
|
|
118
|
+
aury/boot/domain/__init__.py,sha256=bWTS8OeGw9W3fjelM18ha_XeXoxFySUZnGrbOuzwRmE,1687
|
|
119
|
+
aury/boot/domain/exceptions/__init__.py,sha256=NXkkKUPa7PSFKiRcMOHDbPRVajSHyhdaqZaxVm2oEqs,3546
|
|
120
|
+
aury/boot/domain/models/__init__.py,sha256=f-atwliNjWZ3nfO3JJIi9RZae6umtQCg1ddSTV56GWM,964
|
|
121
|
+
aury/boot/domain/models/base.py,sha256=hZHadZaOyTYMOVEteXudQJBqlLnE_HPyXV5rRvrMXJ0,2051
|
|
122
|
+
aury/boot/domain/models/mixins.py,sha256=7s4m4fzt0vWX71aTHgsoagjxSZZZ4_xSea_m0D84P0Q,5309
|
|
123
|
+
aury/boot/domain/models/models.py,sha256=hNze58wPZkZ8QG2_pyszDsyKNjz2UgiRDzmneiCWLQs,2728
|
|
124
|
+
aury/boot/domain/pagination/__init__.py,sha256=HSU_NyLP-ij7ZDUi-ARSSvNkvhW1_wON2Zvu2QlF6HM,11890
|
|
125
|
+
aury/boot/domain/repository/__init__.py,sha256=dnmN8xFu1ASbLnzL6vx8gMoch7xBGxkJkxs9G1iGLGg,490
|
|
126
|
+
aury/boot/domain/repository/impl.py,sha256=CKpCJhgPg5uh3D2h7PVDApM9aT3sk6NNfn5hvP8CEQM,16552
|
|
127
|
+
aury/boot/domain/repository/interceptors.py,sha256=SCTjRmBYwevAMlJ8U1uw-_McsDetNNQ7q0Da5lmfj_E,1238
|
|
128
|
+
aury/boot/domain/repository/interface.py,sha256=CmkiqVhhHPx_xcpuBCz11Vr26-govwYBxFsQ8myEVyw,2904
|
|
129
|
+
aury/boot/domain/repository/query_builder.py,sha256=pFErMzsBql-T6gBX0S4FxIheCkNaGjpSewzcJ2DxrUU,10890
|
|
130
|
+
aury/boot/domain/service/__init__.py,sha256=ZRotaBlqJXn7ebPTQjjoHtorpQREk8AgTD69UCcRd1k,118
|
|
131
|
+
aury/boot/domain/service/base.py,sha256=6sN0nf8r5yUZsE6AcZOiOXFCqzb61oCxTfrWlqjIo9I,2035
|
|
132
|
+
aury/boot/domain/transaction/__init__.py,sha256=Mk-J-5VOuuQ7NDW1DQmU-skCvcUOuEENfP_Ej3iZuJ8,13497
|
|
133
|
+
aury/boot/infrastructure/__init__.py,sha256=ppP1-suaDICMNvBSXj_4DVSH3h0D8e0qZhtENCr16m8,3007
|
|
134
|
+
aury/boot/infrastructure/cache/__init__.py,sha256=G40uCkpJ1jSs2fc_CBDem73iQQzCcp-4GG1WpDJzwaA,658
|
|
135
|
+
aury/boot/infrastructure/cache/backends.py,sha256=9QMQ8G9DtZgzVXZ_Ng7n1gXRu-_OQZgw4FHPOfr1qco,13585
|
|
136
|
+
aury/boot/infrastructure/cache/base.py,sha256=Yn-h_SGcOoGGZW1unOnz_zgcuHaMKOEmwiUP0P7_pIM,1624
|
|
137
|
+
aury/boot/infrastructure/cache/exceptions.py,sha256=KZsFIHXW3_kOh_KB93EVZJKbiDvDw8aloAefJ3kasP8,622
|
|
138
|
+
aury/boot/infrastructure/cache/factory.py,sha256=aF74JoiiSKFgctqqh2Z8OtGRS2Am_ou-I40GyygLzC0,2489
|
|
139
|
+
aury/boot/infrastructure/cache/manager.py,sha256=H2Gi6EEoZBSP5s5BoRlx0MPqKXoNg-mBvogoXmO8w0Y,11822
|
|
140
|
+
aury/boot/infrastructure/channel/__init__.py,sha256=Ztcfn1-TomgV91qhePpFK-3_nKgBt862yEFYUzIwPlo,566
|
|
141
|
+
aury/boot/infrastructure/channel/base.py,sha256=lBpP6vQB2AReoE7pJorkj9mAylXgC31B9Iwhyy2XKlk,2087
|
|
142
|
+
aury/boot/infrastructure/channel/manager.py,sha256=aZ-5lVn2lVRnq_tyCcEgBjZngrt_B6tuoWxlDOf3ykw,6260
|
|
143
|
+
aury/boot/infrastructure/channel/backends/__init__.py,sha256=zrOhrzkhEIgsO7Armhgda1ruJQ6a9ZK7GPZuzvEiuN8,151
|
|
144
|
+
aury/boot/infrastructure/channel/backends/memory.py,sha256=bQuuCU1fHRYdzLRsGwtqObI6U6VYlfyfT_gEwsZcujQ,2808
|
|
145
|
+
aury/boot/infrastructure/channel/backends/redis.py,sha256=lJEPyUxKazjcNa-RU5GyIT2BzyOPLAw3KBTijHslrEo,2810
|
|
146
|
+
aury/boot/infrastructure/clients/__init__.py,sha256=1ANMejb3RrBgaR-jq-dsxJ0kQDRHz5jV-QvdUNcf_ok,435
|
|
147
|
+
aury/boot/infrastructure/clients/rabbitmq/__init__.py,sha256=cnU-W7jOcAgp_FvsY9EipNCeJzeA9gHLRuZ0yQZE2DI,200
|
|
148
|
+
aury/boot/infrastructure/clients/rabbitmq/config.py,sha256=YmvNiISpqNt-LE2CrpzmxCgaEgYna7IbOfUSnA0B4T0,1239
|
|
149
|
+
aury/boot/infrastructure/clients/rabbitmq/manager.py,sha256=a3Op0yN2DICnoqxOVb0DVT9RnoF8laN2EutOsOSWzWA,9659
|
|
150
|
+
aury/boot/infrastructure/clients/redis/__init__.py,sha256=HGZVfcWmOPeiAk-rJ8Yun7N5CQiPlGFofdByvl8Uqso,613
|
|
151
|
+
aury/boot/infrastructure/clients/redis/config.py,sha256=KfC2R7bcQ91zjTp8Q_S7j3ZemDLdejUYc3CrWsJlpNM,1421
|
|
152
|
+
aury/boot/infrastructure/clients/redis/manager.py,sha256=Dmfu6OWGe_PrBr9wbOhl3suUpuKMUJDnCz6xW-rU4fQ,8538
|
|
153
|
+
aury/boot/infrastructure/database/__init__.py,sha256=MsHNyrJ2CZJT-lbVZzOAJ0nFfFEmHrJqC0zw-cFS768,888
|
|
154
|
+
aury/boot/infrastructure/database/config.py,sha256=5LYy4DuLL0XNjVnX2HUcrMh3c71eeZa-vWGM8QCkL0U,1408
|
|
155
|
+
aury/boot/infrastructure/database/exceptions.py,sha256=hUjsU23c0eMwogSDrKq_bQ6zvnY7PQSGaitbCEhhDZQ,766
|
|
156
|
+
aury/boot/infrastructure/database/manager.py,sha256=bgXNi6Gy-u18KQRjIgMshm__G_jui-8j03LpJbllc6Q,10009
|
|
157
|
+
aury/boot/infrastructure/database/query_tools/__init__.py,sha256=D-8Wxm8x48rg9G95aH_b4re7S4_IGJO9zznArYXldFo,5500
|
|
158
|
+
aury/boot/infrastructure/database/strategies/__init__.py,sha256=foj_2xEsgLZxshpK65YAhdJ2UZyh1tKvGRq6sre8pQY,5909
|
|
159
|
+
aury/boot/infrastructure/di/__init__.py,sha256=qFYlk265d6_rS8OiX37_wOc7mBFw8hk3yipDYNkyjQg,231
|
|
160
|
+
aury/boot/infrastructure/di/container.py,sha256=14FVbafGXea-JEAYeOEBxB6zAwndLCZJvprKiD_1IOQ,12524
|
|
161
|
+
aury/boot/infrastructure/events/__init__.py,sha256=D5JNFkGHCH79nYbqUil0Z8eW2p6Gx8P0vBbNnHqnTgM,698
|
|
162
|
+
aury/boot/infrastructure/events/base.py,sha256=oS6aNUWRvpXlbh7L3_4vzlwUumYmg44HKS1S4m_zOFo,3019
|
|
163
|
+
aury/boot/infrastructure/events/manager.py,sha256=HIHcTMs9lz9pFIcR7S1F2iKBUKGeLaD_4P5rlLjp1vw,7334
|
|
164
|
+
aury/boot/infrastructure/events/middleware.py,sha256=Ck3qNMTtLuFFKsJuEUeOMG9nu3qK1N_aqt6wH5JoAtw,1336
|
|
165
|
+
aury/boot/infrastructure/events/backends/__init__.py,sha256=V_hPtdjVUkYU4Uf8hTPVBUcnNYG9OfkjRPDnjp_5_zA,224
|
|
166
|
+
aury/boot/infrastructure/events/backends/memory.py,sha256=Up7vAxdJvIqkcqpnKNCu81ec6iCfNIhcQ-jKM3M2hZc,2623
|
|
167
|
+
aury/boot/infrastructure/events/backends/rabbitmq.py,sha256=XCuI9mc3GR-t0zht4yZ3e2nnyFl8UuTDir_0nsDbfxM,6495
|
|
168
|
+
aury/boot/infrastructure/events/backends/redis.py,sha256=ZCcA6ZvJFvRuwW9IbBfEUy9yp1IKiIrhJ6eDnp2ikKs,5596
|
|
169
|
+
aury/boot/infrastructure/monitoring/__init__.py,sha256=VgElCdCVcgERTIn3oRoSNslR82W9gRX5vgJcYDeloak,16149
|
|
170
|
+
aury/boot/infrastructure/mq/__init__.py,sha256=Q7kBk_GeQnxnqkyp29Bh1yFH3Q8xxxjs8oDYLeDj8C0,498
|
|
171
|
+
aury/boot/infrastructure/mq/base.py,sha256=kHrWUysWflMj3qyOnioLZ90it8d9Alq1Wb4PYhpBW4k,3396
|
|
172
|
+
aury/boot/infrastructure/mq/manager.py,sha256=DVXOQhoqx9dz9INajWiAxLnKjLaP-otKmdiBUzxgsAY,7502
|
|
173
|
+
aury/boot/infrastructure/mq/backends/__init__.py,sha256=YRByNFWv0VFibslQR5v4h5XxfSX-HIveCfb6W1jXM54,139
|
|
174
|
+
aury/boot/infrastructure/mq/backends/rabbitmq.py,sha256=0NWgPKEwtbmI63EVvKINdfXXDNyOvuOOP9LlBzqH91E,5493
|
|
175
|
+
aury/boot/infrastructure/mq/backends/redis.py,sha256=i8KECToIFEZ6CnHyNCk34_xdff5ioK172_knOy6EeUU,5279
|
|
176
|
+
aury/boot/infrastructure/scheduler/__init__.py,sha256=eTRJ5dSPcKvyFvLVtraoQteXTTDDGwIrmw06J2hoNdA,323
|
|
177
|
+
aury/boot/infrastructure/scheduler/exceptions.py,sha256=ROltrhSctVWA-6ulnjuYeHAk3ZF-sykDoesuierYzew,634
|
|
178
|
+
aury/boot/infrastructure/scheduler/manager.py,sha256=vvVditIJC4WaeqWWpUXSmMdkqnlUHREPd0BRPSNpnyY,15554
|
|
179
|
+
aury/boot/infrastructure/storage/__init__.py,sha256=sUfZqHFLYeutssN5t_LcnOApnxwOreXy-1YtDPmtEdo,866
|
|
180
|
+
aury/boot/infrastructure/storage/base.py,sha256=aWBCmPHF5Hkj8VWH2BGkpdeLfqf9uWECOVTFHNj7knw,5131
|
|
181
|
+
aury/boot/infrastructure/storage/exceptions.py,sha256=Av1r94bRkeeeDo6vgAD9e_9YA9Ge6D7F2U1qzUs-8FE,622
|
|
182
|
+
aury/boot/infrastructure/storage/factory.py,sha256=-ua2N5Uw5K14F1FzkGjlqv9VQCtywuZEB9o_kL465IU,2479
|
|
183
|
+
aury/boot/infrastructure/tasks/__init__.py,sha256=Ne3VRVj4Y7x51UUkJH8nVrbxucCbalsQB7PmthqSfxY,513
|
|
184
|
+
aury/boot/infrastructure/tasks/config.py,sha256=qOWjWZ7uZAr2bKc2xx7kdoiWisFqmBqw2uAcaA6Ud6s,747
|
|
185
|
+
aury/boot/infrastructure/tasks/constants.py,sha256=6lo5jGLPItntVKLgrz6uh4tz_F1a-ckEO97MlP5aGcA,836
|
|
186
|
+
aury/boot/infrastructure/tasks/exceptions.py,sha256=v6hlBbfs-oI_HbUZCxR3T8_c-U83s4_I0SvM7GHDUWE,605
|
|
187
|
+
aury/boot/infrastructure/tasks/manager.py,sha256=AGWCZwO3uFQhNZ-reyR2KinlkUsXF8z1bsJ8UmWPcTk,17328
|
|
188
|
+
aury/boot/testing/__init__.py,sha256=WbUSXcICNpr9RvrA2JzxRPcjMuTWDPTKOwXl0l4697U,703
|
|
189
|
+
aury/boot/testing/base.py,sha256=BQOA6V4RIecVJM9t7kto9YxL0Ij_jEsFBdpKceWBe3U,3725
|
|
190
|
+
aury/boot/testing/client.py,sha256=KOg1EemuIVsBG68G5y0DjSxZGcIQVdWQ4ASaHE3o1R0,4484
|
|
191
|
+
aury/boot/testing/factory.py,sha256=8GvwX9qIDu0L65gzJMlrWB0xbmJ-7zPHuwk3eECULcg,5185
|
|
192
|
+
aury/boot/toolkit/__init__.py,sha256=AcyVb9fDf3CaEmJPNkWC4iGv32qCPyk4BuFKSuNiJRQ,334
|
|
193
|
+
aury/boot/toolkit/http/__init__.py,sha256=zIPmpIZ9Qbqe25VmEr7jixoY2fkRbLm7NkCB9vKpg6I,11039
|
|
194
|
+
aury_boot-0.0.7.dist-info/METADATA,sha256=KDVN0P58T0I44zilxRlekVa9Pa63WCN16NMtqjNy6nU,7980
|
|
195
|
+
aury_boot-0.0.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
196
|
+
aury_boot-0.0.7.dist-info/entry_points.txt,sha256=f9KXEkDIGc0BGkgBvsNx_HMz9VhDjNxu26q00jUpDwQ,49
|
|
197
|
+
aury_boot-0.0.7.dist-info/RECORD,,
|