File size: 326 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Copyright (C) 2019 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
import conda.plugins
from .cli import cli
@conda.plugins.hookimpl
def conda_subcommands():
yield conda.plugins.CondaSubcommand(
name="content-trust",
summary="Signing and verification tools for Conda",
action=cli,
)
|