mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-10 03:07:16 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
from hunters.hunter import Hunter
|
|
|
|
|
|
class Kubelet(Hunter):
|
|
def __init__(self, host):
|
|
self.host = host
|
|
|
|
def hunt(self, *args, **kwargs):
|
|
raise NotImplementedError()
|