mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
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>
9 lines
270 B
Python
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
|