forked from moepman/bk-dss
8 lines
144 B
Python
8 lines
144 B
Python
import sys
|
|
import os
|
|
|
|
sitepath = os.path.realpath(os.path.dirname(__file__))
|
|
sys.path.insert(0, sitepath)
|
|
|
|
from index import app as application
|