Files
Yehuda Chikvashvili 14d73e201e Remove dynamic imports (#335)
* 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
2020-04-13 02:56:13 +03:00

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]