mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
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)
|