monkey/monkey_island/cc/resources/pthreport.py

14 lines
262 B
Python

import flask_restful
from cc.auth import jwt_required
from cc.services.pth_report import PTHReportService
__author__ = "itay.mizeretz"
class Report(flask_restful.Resource):
@jwt_required()
def get(self):
return PTHReportService.get_report()