blob: 9a5de3bdf5791bebff2aa30d6b39b43c16b13680 (
plain)
1
2
3
4
5
6
7
8
|
"""Endpoint to receive and return aggregatable debug reports."""
from importlib import import_module
reports = import_module('attribution-reporting.resources.reports')
def main(request, response):
return reports.handle_reports(request)
|