monkey/monkey_island/cc/resources/report.py

11 lines
198 B
Python
Raw Normal View History

2017-10-16 01:06:26 +08:00
import flask_restful
from cc.services.report import ReportService
__author__ = "itay.mizeretz"
class Report(flask_restful.Resource):
def get(self):
return ReportService.get_report()