mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-11 22:50:40 +00:00
11 lines
309 B
Python
11 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)
|