Sign in
webkit
/
WebKit
/
c6951ff6f7d972427c05df8e7c39e3f2d74bf29c
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
xhr
/
resources
/
auth2
/
auth.py
blob: 8b6682686c8709994a19ae430ed2120a047f9398 [
file
] [
log
] [
blame
]
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
)