mirror of
https://github.com/moepman/bk-dss
synced 2024-11-13 06:35:24 +01:00
8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
|
import sys
|
||
|
import os
|
||
|
|
||
|
sitepath = os.path.realpath(os.path.dirname(__file__))
|
||
|
sys.path.insert(0, sitepath)
|
||
|
|
||
|
from index import app as application
|