7 lines
148 B
Python
7 lines
148 B
Python
|
import os
|
||
|
import sys
|
||
|
|
||
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
||
|
sys.path.append(os.path.join(base_path, 'vendor'))
|
||
|
from cps import web
|