auth.py (404B)
1 import os 2 3 from wptserve.utils import isomorphic_decode 4 5 from tools.wpt.utils import load_source 6 7 here = os.path.dirname(os.path.abspath(isomorphic_decode(__file__))) 8 9 def main(request, response): 10 auth = load_source(u"", os.path.join(here, 11 u"..", 12 u"authentication.py")) 13 return auth.main(request, response)