ascender-framework 2.1.0a2__tar.gz → 2.1.0a4__tar.gz
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.
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/PKG-INFO +1 -1
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/scripts/scripts.py +1 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/workspace.py +2 -1
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/pyproject.toml +1 -1
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/LICENSE +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/README.md +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/abc/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/abc/middleware.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/build_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/build_message_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/build_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/create_generator_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/edit_generator_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/generator_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/new/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/new/new_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/new/new_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/run/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/run/run_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/serve/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/serve/serve_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/serve/serve_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/tests/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/tests/tests_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/tests/tests_cli_service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/version/version_app.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api/base_http_middleware.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api/cors_middleware.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api/relational_middleware.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api_docs.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/base/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/base/dto.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/base/response.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/_transport.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/awaitables/awaitable.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/client.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/file.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/formdata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/http_options.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/interceptors.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/injectable.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/client_proxy.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/context.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/event_bus.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/event_transport.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/rpc_transport.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/abc/transporter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/callback_manager.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/exceptions/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/exceptions/rpc_exception.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/bus.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/client_factory.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/client_proxy.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/client.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/context.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/event.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/metadata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/rpc.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/kafka/transporter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/client.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/context.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/event.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/rpc.old.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/rpc.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/redis/transporter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/client.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/context.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/event.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/rpc.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/tcp/transporter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/instances/transport.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/patterns/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/patterns/event_pattern.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/patterns/message_pattern.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/transport_manager.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/consumer_metadata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/ctx.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/options.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/transport.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/utils/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/utils/consumers.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/utils/data_parser.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/utils/defer_mapping.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/utils/redis_tools.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/serializer.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/contrib/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/contrib/middlewares.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/build.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/dockerfile_generator.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/file_builder.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/obfuscator.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/asc_config.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/interface/environment.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/interface/main.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/interface/runtime.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/static_files.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/stub.json +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/_create_internal.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/_lifespan.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/application.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/configure_imports.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/create_application.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/lifecycle.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/root_injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/application.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/async_module.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/injectable.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/loaders/base_loader.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/loaders/generic_loader.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/main.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/models.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/processor.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/decorators/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/decorators/command.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/decorators/handler.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/engine.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/parameters/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/parameters/boolean.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/parameters/const.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/parameters/parameter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/protos/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/protos/basic_cli.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/protos/generic_cli.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/command_metadata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/handler_metadata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/parameter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/parameter_kind.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/undefined.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/argparser.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/metadata_from_class.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/signature_from_callable.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/valiidator.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/constructor.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/dbcontext.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/engine.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/entity.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/errors/wrong_orm.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/orms/sqlalchemy.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/orms/tortoise.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/orm_enum.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/sqlalchemy_configuration.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/tortoise_configuration.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/abc/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/abc/base_injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/forward_ref.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/inject.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/injectfn.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/consts.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/injection_metadata.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/record.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/none_injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/overrider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/test_injector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/forward_ref.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/graph.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/injection_def.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/providers.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/record.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/authentication.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/base.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/config_error.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/lifecycle_error.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/not_standalone.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/scope_error.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/logger/_logger.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/logger/formatter.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/logger/rotation.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/registries/container.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/registries/service.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/repositories.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/root.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/graph.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/interface/route.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/provide.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/router.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/router_module.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/utils/controller.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/utils/from_controllers.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/services.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/controller.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/controller_hook.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/controller_ref.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/module.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/module_ref.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/struct/routes.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/types.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/utils/hydrate_consumer.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/utils/module.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/utils/repository.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/guards/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/guards/guard.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/guards/paramguard.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/guards/use_guards.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/base/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/base/edit.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/controller/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/controller/files/controller.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/guard/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/guard/files/guard.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/guard/files/param-guard.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/module/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/module/edit.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/module/files/module.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/module/files/update-module.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/.gitignore +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/LICENSE +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/README.md +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/app_module.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/ascender.json.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/bootstrap.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/main.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/routes.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/settings-connectiontypes/sqlalchemy.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/settings-connectiontypes/tortoise.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/project/files/settings.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/repository/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/repository/edit.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/repository/files/repository.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/repository/files/sa-repository-record.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/repository/files/to-repository-record.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/service/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/service/files/service.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/tests/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/tests/files/pytest.ini.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/tests/files/tests/conftest.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/tests/files/tests/test_initial.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/utilities/case_filters.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/utilities/entity_filters.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/utilities/namespace_maker.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/workspace/create.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/workspace/files/main.py.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/schematics/workspace/files/workspace.json.asctpl +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/start.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/lifecycle.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/mixer.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/mock_dependency.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/test_client.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/utils/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/utils/metadata/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/testing/utils/metadata/faker_field.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/_configs/workspace.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/_configs/workspace_project.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/_configs/workspace_script.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/pkg_managers/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/pkg_managers/base.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/pkg_managers/detector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/pkg_managers/poetry.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/pkg_managers/uv.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/projects/manager.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/provider.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/scripts/builtin/projects.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/utils/__init__.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/utils/detector.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/utils/project_toml.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/workspaces/utils/workspace_json.py +0 -0
- {ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/logo.png +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ascender-framework
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.0a4
|
|
4
4
|
Summary: The Ascender Framework is a sophisticated and structured FastAPI-based framework, inspired by the principles of NestJS. It stands out for its modular and organized architecture, offering developers a streamlined and efficient way to build web applications
|
|
5
5
|
Author: AscenderTeam
|
|
6
6
|
Requires-Python: >=3.11,<3.15
|
|
@@ -42,7 +42,8 @@ class Workspace:
|
|
|
42
42
|
script_commands = []
|
|
43
43
|
|
|
44
44
|
for script in self.workspace_configs.scripts:
|
|
45
|
-
|
|
45
|
+
script_cls = type(f"ScriptsCLI_{script.name}", (ScriptsCLI,), {})
|
|
46
|
+
cli = Command(name=script.name)(script_cls)()
|
|
46
47
|
cli.set_command(script.command, cwd=script.cwd) # pyright: ignore[]
|
|
47
48
|
script_commands.append(cli)
|
|
48
49
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "ascender-framework"
|
|
3
|
-
version = "2.1.
|
|
3
|
+
version = "2.1.0a4"
|
|
4
4
|
description = "The Ascender Framework is a sophisticated and structured FastAPI-based framework, inspired by the principles of NestJS. It stands out for its modular and organized architecture, offering developers a streamlined and efficient way to build web applications"
|
|
5
5
|
authors = ["AscenderTeam"]
|
|
6
6
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/build_app.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/builder/build_service.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/generator/generator_app.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/serve/serve_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/tests/tests_cli_service.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/clis/version/version_app.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/api/cors_middleware.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/_transport.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/__init__.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/file.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/formdata.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/http_options.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/http/types/interceptors.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/provider.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/common/microservices/types/ctx.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/file_builder.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_builder/obfuscator.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/asc_config.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/interface/main.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/interface/runtime.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/_config/static_files.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/_lifespan.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/application.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/applications/lifecycle.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli/loaders/base_loader.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/engine.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/provider.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/types/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/cli_engine/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/__init__.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/constructor.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/dbcontext.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/errors/wrong_orm.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/orms/sqlalchemy.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/orms/tortoise.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/provider.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/__init__.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/database/types/orm_enum.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/abc/base_injector.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/__init__.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/consts.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/injector.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/provider.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/interface/record.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/__init__.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/forward_ref.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/injection_def.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/di/utils/providers.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/authentication.py
RENAMED
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/config_error.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/lifecycle_error.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/not_standalone.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/errors/scope_error.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/registries/container.py
RENAMED
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/registries/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ascender_framework-2.1.0a2 → ascender_framework-2.1.0a4}/ascender/core/router/interface/route.py
RENAMED
|
File without changes
|