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