MANIFEST.in
README.md
firefly.yml
setup.py
src/firefly/__init__.py
src/firefly/application/__init__.py
src/firefly/application/container.py
src/firefly/application/service/__init__.py
src/firefly/application/service/core/__init__.py
src/firefly/application/service/core/auto_generate_aggregate_apis.py
src/firefly/application/service/core/configure_deployment.py
src/firefly/application/service/core/configure_storage.py
src/firefly/application/service/core/load_application_layer.py
src/firefly/application/service/core/load_containers.py
src/firefly/application/service/core/load_domain_layer.py
src/firefly/application/service/core/load_infrastructure_layer.py
src/firefly/application/service/core/load_presentation_layer.py
src/firefly/application/service/deployment/__init__.py
src/firefly/application/service/deployment/deploy.py
src/firefly/application/service/deployment/migrate_repositories.py
src/firefly/application/service/iaaa/__init__.py
src/firefly/application/service/iaaa/authenticating_middleware.py
src/firefly/application/service/iaaa/authorize_scope.py
src/firefly/application/service/iaaa/authorizing_middleware.py
src/firefly/application/service/utilities/__init__.py
src/firefly/application/service/utilities/generate_api_spec.py
src/firefly/application/service/utilities/get_dto_schema.py
src/firefly/application/service/utilities/initialize_project.py
src/firefly/application/service/utilities/crud/__init__.py
src/firefly/domain/__init__.py
src/firefly/domain/error.py
src/firefly/domain/utils.py
src/firefly/domain/command/__init__.py
src/firefly/domain/command/framework_command.py
src/firefly/domain/command/load_containers.py
src/firefly/domain/entity/__init__.py
src/firefly/domain/entity/aggregate_root.py
src/firefly/domain/entity/entity.py
src/firefly/domain/entity/json_schema.py
src/firefly/domain/entity/meta_aggregate.py
src/firefly/domain/entity/core/__init__.py
src/firefly/domain/entity/core/api_gateway.py
src/firefly/domain/entity/core/cli_app.py
src/firefly/domain/entity/core/cli_argument.py
src/firefly/domain/entity/core/cli_endpoint.py
src/firefly/domain/entity/core/configuration.py
src/firefly/domain/entity/core/context.py
src/firefly/domain/entity/core/context_map.py
src/firefly/domain/entity/core/deployment.py
src/firefly/domain/entity/core/endpoint.py
src/firefly/domain/entity/core/http_endpoint.py
src/firefly/domain/entity/core/mutex.py
src/firefly/domain/entity/core/service.py
src/firefly/domain/entity/core/timer.py
src/firefly/domain/entity/core/user.py
src/firefly/domain/entity/messaging/__init__.py
src/firefly/domain/entity/messaging/command.py
src/firefly/domain/entity/messaging/event.py
src/firefly/domain/entity/messaging/http_response.py
src/firefly/domain/entity/messaging/message.py
src/firefly/domain/entity/messaging/network_topology.py
src/firefly/domain/entity/messaging/query.py
src/firefly/domain/entity/messaging/queue.py
src/firefly/domain/entity/messaging/response.py
src/firefly/domain/entity/messaging/topic.py
src/firefly/domain/entity/system/__init__.py
src/firefly/domain/entity/system/file.py
src/firefly/domain/entity/validation/__init__.py
src/firefly/domain/entity/validation/validators.py
src/firefly/domain/event/__init__.py
src/firefly/domain/event/application_layer_loaded.py
src/firefly/domain/event/container_initialized.py
src/firefly/domain/event/containers_loaded.py
src/firefly/domain/event/deployment_complete.py
src/firefly/domain/event/deployment_created.py
src/firefly/domain/event/deployment_initialized.py
src/firefly/domain/event/deployment_starting.py
src/firefly/domain/event/domain_entities_loaded.py
src/firefly/domain/event/framework_event.py
src/firefly/domain/event/infrastructure_layer_loaded.py
src/firefly/domain/event/presentation_layer_loaded.py
src/firefly/domain/event/storage_configured.py
src/firefly/domain/factory/__init__.py
src/firefly/domain/factory/agent_factory.py
src/firefly/domain/factory/configuration_factory.py
src/firefly/domain/factory/factory.py
src/firefly/domain/meta/__init__.py
src/firefly/domain/meta/build_argument_list.py
src/firefly/domain/meta/context_aware.py
src/firefly/domain/meta/entity_meta.py
src/firefly/domain/meta/firefly_type.py
src/firefly/domain/meta/get_arguments.py
src/firefly/domain/meta/message_meta.py
src/firefly/domain/meta/meta_aware.py
src/firefly/domain/meta/value_object_meta.py
src/firefly/domain/repository/__init__.py
src/firefly/domain/repository/connection_factory.py
src/firefly/domain/repository/registry.py
src/firefly/domain/repository/repository.py
src/firefly/domain/repository/repository_factory.py
src/firefly/domain/repository/search_criteria.py
src/firefly/domain/repository/transaction_handling_middleware.py
src/firefly/domain/service/__init__.py
src/firefly/domain/service/annotation/__init__.py
src/firefly/domain/service/annotation/agent.py
src/firefly/domain/service/annotation/authenticator.py
src/firefly/domain/service/annotation/cli.py
src/firefly/domain/service/annotation/command_handler.py
src/firefly/domain/service/annotation/configuration_annotation.py
src/firefly/domain/service/annotation/on.py
src/firefly/domain/service/annotation/query_handler.py
src/firefly/domain/service/annotation/register_middleware.py
src/firefly/domain/service/annotation/rest.py
src/firefly/domain/service/annotation/timer.py
src/firefly/domain/service/command_line/__init__.py
src/firefly/domain/service/command_line/cli_app_executor.py
src/firefly/domain/service/content_negotiation/__init__.py
src/firefly/domain/service/content_negotiation/content_converter.py
src/firefly/domain/service/content_negotiation/content_negotiator.py
src/firefly/domain/service/core/__init__.py
src/firefly/domain/service/core/add_service.py
src/firefly/domain/service/core/agent.py
src/firefly/domain/service/core/application_service.py
src/firefly/domain/service/core/device.py
src/firefly/domain/service/core/domain_service.py
src/firefly/domain/service/core/invoke_command.py
src/firefly/domain/service/core/invoke_on.py
src/firefly/domain/service/core/kernel.py
src/firefly/domain/service/core/module_base.py
src/firefly/domain/service/core/query_service.py
src/firefly/domain/service/crud/__init__.py
src/firefly/domain/service/crud/create_entity.py
src/firefly/domain/service/crud/crud_operation.py
src/firefly/domain/service/crud/delete_entity.py
src/firefly/domain/service/crud/read_entity.py
src/firefly/domain/service/crud/update_entity.py
src/firefly/domain/service/entity/__init__.py
src/firefly/domain/service/entity/validator.py
src/firefly/domain/service/files/__init__.py
src/firefly/domain/service/files/file_system.py
src/firefly/domain/service/http/__init__.py
src/firefly/domain/service/http/rest_router.py
src/firefly/domain/service/logging/__init__.py
src/firefly/domain/service/logging/logger.py
src/firefly/domain/service/messaging/__init__.py
src/firefly/domain/service/messaging/command_bus.py
src/firefly/domain/service/messaging/command_resolving_middleware.py
src/firefly/domain/service/messaging/event_bus.py
src/firefly/domain/service/messaging/event_dispatching_middleware.py
src/firefly/domain/service/messaging/event_resolving_middleware.py
src/firefly/domain/service/messaging/logging_middleware.py
src/firefly/domain/service/messaging/message_bus.py
src/firefly/domain/service/messaging/message_factory.py
src/firefly/domain/service/messaging/message_transport.py
src/firefly/domain/service/messaging/middleware.py
src/firefly/domain/service/messaging/middleware_stack.py
src/firefly/domain/service/messaging/mutex.py
src/firefly/domain/service/messaging/query_bus.py
src/firefly/domain/service/messaging/query_resolving_middleware.py
src/firefly/domain/service/messaging/service_executing_middleware.py
src/firefly/domain/service/messaging/subscription_wrapper.py
src/firefly/domain/service/messaging/system_bus.py
src/firefly/domain/service/multithreading/__init__.py
src/firefly/domain/service/multithreading/batch_process.py
src/firefly/domain/service/patterns/__init__.py
src/firefly/domain/service/patterns/chain_of_responsibility.py
src/firefly/domain/service/serialization/__init__.py
src/firefly/domain/service/serialization/serializer.py
src/firefly/domain/value_object/__init__.py
src/firefly/domain/value_object/event_buffer.py
src/firefly/domain/value_object/generic_base.py
src/firefly/domain/value_object/parameter.py
src/firefly/infrastructure/__init__.py
src/firefly/infrastructure/jinja2.py
src/firefly/infrastructure/cli/__init__.py
src/firefly/infrastructure/cli/app.py
src/firefly/infrastructure/factory/__init__.py
src/firefly/infrastructure/factory/memory_configuration_factory.py
src/firefly/infrastructure/factory/yaml_configuration_factory.py
src/firefly/infrastructure/repository/__init__.py
src/firefly/infrastructure/repository/abstract_repository.py
src/firefly/infrastructure/repository/abstract_storage_interface.py
src/firefly/infrastructure/repository/document_repository.py
src/firefly/infrastructure/repository/document_repository_factory.py
src/firefly/infrastructure/repository/document_storage_interface.py
src/firefly/infrastructure/repository/memory_repository.py
src/firefly/infrastructure/repository/memory_repository_factory.py
src/firefly/infrastructure/repository/rdb_connection_factory.py
src/firefly/infrastructure/repository/rdb_repository.py
src/firefly/infrastructure/repository/rdb_repository_factory.py
src/firefly/infrastructure/repository/rdb_storage_interface.py
src/firefly/infrastructure/repository/rdb_storage_interface_registry.py
src/firefly/infrastructure/repository/rdb_storage_interfaces/__init__.py
src/firefly/infrastructure/repository/rdb_storage_interfaces/legacy_storage_interface.py
src/firefly/infrastructure/repository/rdb_storage_interfaces/sqlite_storage_interface.py
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/add_column.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/create_schema.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/create_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/drop_index.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/get_columns.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/mysql/get_indexes.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/add_index.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/create_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/delete.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/get_columns.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/get_indexes.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/insert.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/macros.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/select.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/pg/update.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/add_column.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/add_index.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/create_schema.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/create_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/delete.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/drop_column.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/drop_index.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/drop_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/insert.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/macros.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/select.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/truncate_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sql/update.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/add_column.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/add_index.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/create_flat_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/create_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/delete.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/drop_column.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/drop_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/get_columns.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/get_indexes.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/insert.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/select.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/truncate_table.sql
src/firefly/infrastructure/repository/rdb_storage_interfaces/templates/sqlite/update.sql
src/firefly/infrastructure/service/__init__.py
src/firefly/infrastructure/service/cli/__init__.py
src/firefly/infrastructure/service/cli/argparse_executor.py
src/firefly/infrastructure/service/config/__init__.py
src/firefly/infrastructure/service/content_negotiation/__init__.py
src/firefly/infrastructure/service/content_negotiation/html_converter.py
src/firefly/infrastructure/service/core/__init__.py
src/firefly/infrastructure/service/core/default_agent.py
src/firefly/infrastructure/service/files/__init__.py
src/firefly/infrastructure/service/files/local_file_system.py
src/firefly/infrastructure/service/http/__init__.py
src/firefly/infrastructure/service/http/routes_rest_router.py
src/firefly/infrastructure/service/logging/__init__.py
src/firefly/infrastructure/service/logging/python_logger.py
src/firefly/infrastructure/service/messaging/__init__.py
src/firefly/infrastructure/service/messaging/asyncio_message_transport.py
src/firefly/infrastructure/service/messaging/fake_message_transport.py
src/firefly/infrastructure/service/messaging/memory_mutex.py
src/firefly/infrastructure/service/serialization/__init__.py
src/firefly/infrastructure/service/serialization/default_serializer.py
src/firefly/infrastructure/web_server/__init__.py
src/firefly/infrastructure/web_server/web_server.py
src/firefly/plugins/__init__.py
src/firefly/plugins/pytest/__init__.py
src/firefly/presentation/__init__.py
src/firefly/presentation/cli.py
src/firefly/presentation/http.py
src/firefly/presentation/firefly_web_app/__init__.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/PRESUBMIT.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/gyp_main.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/setup.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/common.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/input.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/tools/graphviz.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/tools/pretty_gyp.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/tools/pretty_sln.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/test/fixtures/test-charmap.py
src/firefly/presentation/firefly_web_app/node_modules/node-gyp/tools/gyp/pylib/gyp/generator/compile_commands_json.py
src/firefly/presentation/web/__init__.py
src/firefly/presentation/web/bus.py
src/firefly/presentation/web/plugins.py
src/firefly/presentation/web/polyfills.py
src/firefly/presentation/web/state.py
src/firefly/presentation/web/stubs.py
src/firefly/presentation/web/components/firefly_logo.py
src/firefly/presentation/web/components/form.py
src/firefly/presentation/web/components/icon.py
src/firefly/presentation/web/components/layouts/default.py
src/firefly/presentation/web/js_libs/__init__.py
src/firefly/presentation/web/js_libs/inflection.py
src/firefly/presentation/web/js_libs/mithril.py
src/firefly/presentation/web/js_libs/moment.py
src/firefly/tests/__init__.py
src/firefly/tests/rdb_repository.py
src/firefly_framework.egg-info/PKG-INFO
src/firefly_framework.egg-info/SOURCES.txt
src/firefly_framework.egg-info/dependency_links.txt
src/firefly_framework.egg-info/entry_points.txt
src/firefly_framework.egg-info/requires.txt
src/firefly_framework.egg-info/top_level.txt
src/firefly_test/calendar/__init__.py
src/firefly_test/calendar/domain/__init__.py
src/firefly_test/calendar/domain/entity/__init__.py
src/firefly_test/calendar/domain/entity/calendar.py
src/firefly_test/calendar/domain/entity/event.py
src/firefly_test/calendar/domain/entity/reminder.py
src/firefly_test/iam/__init__.py
src/firefly_test/iam/application/__init__.py
src/firefly_test/iam/application/service/__init__.py
src/firefly_test/iam/application/service/request_token.py
src/firefly_test/iam/domain/__init__.py
src/firefly_test/iam/domain/entity/__init__.py
src/firefly_test/iam/domain/entity/role.py
src/firefly_test/iam/domain/entity/scope.py
src/firefly_test/iam/domain/entity/user.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/PRESUBMIT.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/gyp_main.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/setup.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/common.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/input.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/graphviz.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_gyp.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_sln.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/test/fixtures/test-charmap.py
src/firefly_test/iam/ui/web_app/node_modules/firefly-framework/node_modules/node-gyp/tools/gyp/pylib/gyp/generator/compile_commands_json.py
src/firefly_test/todo/__init__.py
src/firefly_test/todo/application/__init__.py
src/firefly_test/todo/application/middleware/__init__.py
src/firefly_test/todo/application/middleware/authenticate.py
src/firefly_test/todo/application/service/__init__.py
src/firefly_test/todo/application/service/create_calendar.py
src/firefly_test/todo/application/service/get_dto_schema.py
src/firefly_test/todo/application/service/update_todo_list_with_sleep.py
src/firefly_test/todo/domain/__init__.py
src/firefly_test/todo/domain/entity/__init__.py
src/firefly_test/todo/domain/entity/task.py
src/firefly_test/todo/domain/entity/todo_list.py
src/firefly_test/todo/domain/entity/user.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/PRESUBMIT.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/gyp_main.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/setup.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/common.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/input.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/graphviz.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_gyp.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_sln.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/test/fixtures/test-charmap.py
src/firefly_test/web_app/node_modules/firefly-framework/node_modules/node-gyp/tools/gyp/pylib/gyp/generator/compile_commands_json.py
src/firefly_web/app.py