mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Only "Updater" and "FetcherInterface" are considered public classes of the client. Exposing them in __init__.py makes usage and access simpler. Signed-off-by: Teodora Sechkova <tsechkova@vmware.com>
8 lines
224 B
Python
8 lines
224 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.fetcher import FetcherInterface
|
|
from tuf.ngclient.updater import Updater
|