|
18 | 18 | AppPipelineTemplateMetadataException, |
19 | 19 | PipelineTemplateCloneException, |
20 | 20 | ) |
| 21 | +from samcli.commands.pipeline.bootstrap.cli import ( |
| 22 | + PIPELINE_CONFIG_DIR, |
| 23 | + PIPELINE_CONFIG_FILENAME, |
| 24 | + _get_bootstrap_command_names, |
| 25 | +) |
| 26 | +from samcli.commands.pipeline.bootstrap.cli import do_cli as do_bootstrap |
| 27 | +from samcli.commands.pipeline.init.pipeline_templates_manifest import ( |
| 28 | + PipelineTemplateMetadata, |
| 29 | + PipelineTemplatesManifest, |
| 30 | + Provider, |
| 31 | +) |
21 | 32 | from samcli.lib.config.samconfig import SamConfig |
22 | 33 | from samcli.lib.cookiecutter.interactive_flow import InteractiveFlow |
23 | 34 | from samcli.lib.cookiecutter.interactive_flow_creator import InteractiveFlowCreator |
|
27 | 38 | from samcli.lib.utils.colors import Colored |
28 | 39 | from samcli.lib.utils.git_repo import CloneRepoException, GitRepo |
29 | 40 |
|
30 | | -from ..bootstrap.cli import ( |
31 | | - PIPELINE_CONFIG_DIR, |
32 | | - PIPELINE_CONFIG_FILENAME, |
33 | | - _get_bootstrap_command_names, |
34 | | -) |
35 | | -from ..bootstrap.cli import do_cli as do_bootstrap |
36 | | -from .pipeline_templates_manifest import PipelineTemplateMetadata, PipelineTemplatesManifest, Provider |
37 | | - |
38 | 41 | LOG = logging.getLogger(__name__) |
39 | 42 | shared_path: Path = GlobalConfig().config_dir |
40 | 43 | APP_PIPELINE_TEMPLATES_REPO_URL = "https://github.com/aws/aws-sam-cli-pipeline-init-templates.git" |
|
0 commit comments