Revision control

Copy as Markdown

Other Tools

"""Endpoint to receive and return aggregatable attribution reports."""
from importlib import import_module
reports = import_module('attribution-reporting.resources.reports')
def main(request, response):
return reports.handle_reports(request)