Skip to content

Commit 8738b86

Browse files
committed
Enhance __all__ exports in __init__.py to include additional options and error classes
1 parent 126cfbf commit 8738b86

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

python/src/vaas/__init__.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,29 @@
66
__all__ = [
77
"Vaas",
88
"VaasTracing",
9+
"VaasOptions",
910
"VaasAuthenticationError",
11+
"VaasClientError",
12+
"VaasServerError",
13+
"FromStreamOptions",
14+
"ForFileOptions",
15+
"ForSha256Options",
16+
"ForUrlOptions",
1017
"ClientCredentialsGrantAuthenticator",
1118
"ResourceOwnerPasswordGrantAuthenticator",
1219
]
1320

1421
__author__ = "G DATA CyberDefense AG <oem@gdata.de>"
1522

16-
from .vaas import Vaas, VaasTracing
23+
from .vaas import Vaas, VaasTracing, VaasOptions
24+
from .options.for_stream_options import ForStreamOptions
25+
from .options.for_file_options import ForFileOptions
26+
from .options.for_sha256_options import ForSha256Options
27+
from .options.for_url_options import ForUrlOptions
1728
from .vaas_errors import (
1829
VaasAuthenticationError,
30+
VaasClientError,
31+
VaasServerError
1932
)
2033
from .authentication.client_credentials_grant_authenticator import ClientCredentialsGrantAuthenticator
2134
from .authentication.resource_owner_password_grant_authenticator import ResourceOwnerPasswordGrantAuthenticator

0 commit comments

Comments
 (0)