python-tuf/tuf/ngclient/__init__.py
Teodora Sechkova a50e76d815
Add client config module
Add a config module containing a dataclass
UpdaterConfig with all client settings.
Initialize updater with default settings
if no other condig is provided.

Signed-off-by: Teodora Sechkova <tsechkova@vmware.com>
2021-07-05 18:35:32 +03:00

9 lines
270 B
Python

# Copyright New York University and the TUF contributors
# SPDX-License-Identifier: MIT OR Apache-2.0
"""TUF client public API
"""
from tuf.ngclient.config import UpdaterConfig
from tuf.ngclient.fetcher import FetcherInterface
from tuf.ngclient.updater import Updater