mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
MozReview-Commit-ID: 5p4t1pbJpjq --HG-- rename : testing/web-platform/tests/websockets/websocket.js => testing/web-platform/tests/websockets/websocket.sub.js
10 lines
309 B
Python
10 lines
309 B
Python
import imp
|
|
import os
|
|
|
|
here = os.path.split(os.path.abspath(__file__))[0]
|
|
|
|
def main(request, response):
|
|
auth = imp.load_source("", os.path.join(here,
|
|
"..",
|
|
"authentication.py"))
|
|
return auth.main(request, response)
|