blob: 7ffdb70773d47d2e5943253d27520b5cece907ba (
plain)
1
2
3
4
5
6
7
|
"""Endpoint to receive and return aggregatable reports."""
from importlib import import_module
reports = import_module('private-aggregation.resources.reports')
def main(request, response):
return reports.handle_request(request)
|