mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
12 lines
378 B
Python
12 lines
378 B
Python
import imp
|
|
import os
|
|
|
|
from wptserve.utils import isomorphic_decode
|
|
|
|
here = os.path.dirname(os.path.abspath(isomorphic_decode(__file__)))
|
|
|
|
def main(request, response):
|
|
auth = imp.load_source(u"", os.path.join(here,
|
|
u"..",
|
|
u"authentication.py"))
|
|
return auth.main(request, response)
|