mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-08-21 13:16:28 +00:00
14 lines
205 B
Python
14 lines
205 B
Python
from kube_hunter.plugins import hookimpl
|
|
|
|
return_string = "return_string"
|
|
|
|
|
|
@hookimpl
|
|
def parser_add_arguments(parser):
|
|
return return_string
|
|
|
|
|
|
@hookimpl
|
|
def load_plugin(args):
|
|
return return_string
|