#!/usr/bin/env python3
"""
WSGI Configuration for TPRM Directory on Spaceship Hosting

This file serves as the entry point for your TPRM directory application
when deployed on Spaceship hosting platform.
"""

import sys
import os

# Add the application directory to Python path
sys.path.insert(0, os.path.dirname(__file__))

# Import your Flask application
from main import app as application

if __name__ == "__main__":
    application.run()

