1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# SPDX-FileCopyrightText: 2018-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
"""Latest supported protocols, including unstable ones.
This module exposes the latest supported protocols of GVM including versions
not yet released as stable, which may contain features that can change at any time
and may not be available in all builds of the gvmd back-end.
The provided Gmp class implements the latest Greenbone Management Protocol.
The provided Osp class implements the latest Open Scanner Protocol.
For details about the possible supported protocol versions please take a look at
:py:mod:`gvm.protocols`.
Exports:
- :py:class:`gvm.protocols.gmp.GMPNext`
- :py:class:`gvm.protocols.ospv1.Osp`
"""
from .gmp import (
GMPNext as GMP,
)
from .ospv1 import Osp
Gmp = GMP # for backwards compatibility
__all__ = [
"Gmp",
"GMP",
"Osp",
]
|