forked from p15670423/monkey
11 lines
198 B
Python
11 lines
198 B
Python
|
import flask_restful
|
||
|
|
||
|
from cc.services.report import ReportService
|
||
|
|
||
|
__author__ = "itay.mizeretz"
|
||
|
|
||
|
|
||
|
class Report(flask_restful.Resource):
|
||
|
def get(self):
|
||
|
return ReportService.get_report()
|