forked from p15670423/monkey
adding the exporter father class and aws implement
This commit is contained in:
parent
472518bacf
commit
7179d840a7
|
@ -0,0 +1,9 @@
|
|||
from exporter import Exporter
|
||||
|
||||
class AWSExporter(Exporter):
|
||||
|
||||
def __init__(self):
|
||||
Exporter.__init__(self)
|
||||
|
||||
def handle_report(self, report_json):
|
||||
pass
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
class Exporter:
|
||||
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def handle_report(self, report_json):
|
||||
raise NotImplementedError
|
Loading…
Reference in New Issue