File: __init__.py

package info (click to toggle)
python-gvm 26.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,316 kB
  • sloc: python: 46,784; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 593 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# SPDX-FileCopyrightText: 2021-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

from .test_clone_note import GmpCloneNoteTestMixin
from .test_create_note import GmpCreateNoteTestMixin
from .test_delete_note import GmpDeleteNoteTestMixin
from .test_get_note import GmpGetNoteTestMixin
from .test_get_notes import GmpGetNotesTestMixin
from .test_modify_note import GmpModifyNoteTestMixin

__all__ = (
    "GmpCloneNoteTestMixin",
    "GmpCreateNoteTestMixin",
    "GmpDeleteNoteTestMixin",
    "GmpGetNoteTestMixin",
    "GmpGetNotesTestMixin",
    "GmpModifyNoteTestMixin",
)