mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-08-23 22:26:23 +00:00
* Remove plugins Current usage of plugins is not pluggable and includes logging stuff. Move this to conf/logging. * Removed dynamic imports * Add tests for hunters registration
22 lines
231 B
Python
22 lines
231 B
Python
from . import (
|
|
apiserver,
|
|
dashboard,
|
|
etcd,
|
|
hosts,
|
|
kubectl,
|
|
kubelet,
|
|
ports,
|
|
proxy,
|
|
)
|
|
|
|
__all__ = [
|
|
apiserver,
|
|
dashboard,
|
|
etcd,
|
|
hosts,
|
|
kubectl,
|
|
kubelet,
|
|
ports,
|
|
proxy,
|
|
]
|