adding the exporter father class and aws implement

This commit is contained in:
maor.rayzin 2018-11-19 15:40:16 +02:00
parent 472518bacf
commit 7179d840a7
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
from exporter import Exporter
class AWSExporter(Exporter):
def __init__(self):
Exporter.__init__(self)
def handle_report(self, report_json):
pass

View File

@ -0,0 +1,9 @@
class Exporter:
def __init__(self):
pass
def handle_report(self, report_json):
raise NotImplementedError