Files
kube-hunter/hunters/proxy.py
Yehuda Chikvashvili 1a91ac63da initial commit
2018-03-26 17:25:30 +03:00

10 lines
186 B
Python

from hunters.hunter import Hunter
class Proxy(Hunter):
def __init__(self, host):
self.host = host
def hunt(self, *args, **kwargs):
raise NotImplementedError()