blob: e6ee12e6c3c9e1875e6fa149888ea6cb88e8916e [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
sys.stdout.write(
'Access-Control-Allow-Origin: *\r\n'
'Content-Type: text/css\r\n\r\n'
)
sys.stdout.flush()
with open(os.path.join(os.path.dirname(__file__), 'loading-subresources.css'), 'rb') as file:
sys.stdout.buffer.write(file.read())