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
9 lines
166 B
Python
9 lines
166 B
Python
from kube_hunter.conf.parser import parse_args
|
|
from kube_hunter.conf.logging import setup_logger
|
|
|
|
|
|
config = parse_args()
|
|
setup_logger(config.log)
|
|
|
|
__all__ = [config]
|