Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/awscli/customizations/codeartifact/__init__.py
1567 views
1
from awscli.customizations.codeartifact.login import CodeArtifactLogin
2
3
4
def register_codeartifact_commands(event_emitter):
5
event_emitter.register(
6
'building-command-table.codeartifact', inject_commands
7
)
8
9
10
def inject_commands(command_table, session, **kwargs):
11
command_table['login'] = CodeArtifactLogin(session)
12
13