IndexController.py 226 B

12345678
  1. from django.views.decorators.http import require_http_methods
  2. from backend.Service.IndexService import IndexService
  3. @require_http_methods(['POST'])
  4. def statistics(reqeust):
  5. return IndexService.statistics(reqeust)