python-tuf/tuf/ngclient/__init__.py
Teodora Sechkova 3f1aa10dbd Expose client public classes from __init__.py
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>
2021-05-21 10:00:00 +03:00

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