mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
8 lines
177 B
Python
8 lines
177 B
Python
import sys
|
|
import json
|
|
|
|
def main(request, response):
|
|
content = request.GET.first(b"content", None)
|
|
response.headers.set(b"Content-Type", "text/css");
|
|
return content
|