import sys
import os

INTERP = "/home/artistica/prediksiproperti/venv/bin/python3"
if sys.executable != INTERP:
    os.execl(INTERP, INTERP, *sys.argv)

sys.path.insert(0, "/home/artistica/prediksiproperti")
os.chdir("/home/artistica/prediksiproperti")

from app import app as application
