version.py Source File

version.py Source File#

SDK qb Runtime Library: version.py Source File
SDK qb Runtime Library v1.0
MCS001-
version.py
Go to the documentation of this file.
1
4
5import qbruntime.qbruntime as _cQbRuntime
6
7__all__ = [
8 "__version__",
9 "__git_version__",
10 "__vendor__",
11 "__product__",
12]
13
14
17
18__version__: str = _cQbRuntime.version.__version__
19__git_version__: str = _cQbRuntime.version.__git_version__
20__vendor__: str = _cQbRuntime.version.__vendor__
21__product__: str = _cQbRuntime.version.__product__
22
23