mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-10 03:07:16 +00:00
10 lines
163 B
Python
10 lines
163 B
Python
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class Hunter(object):
|
|
__metaclass__ = ABCMeta
|
|
|
|
@abstractmethod
|
|
def hunt(self, *args, **kwargs):
|
|
pass
|