Files
drop.i2p/wsgi.py
Dustin Fields e63a82ba9c initial push
2025-06-21 12:14:35 -04:00

9 lines
197 B
Python

# wsgi.py
# This file is the entry point for the Gunicorn WSGI server.
# It imports the 'app' object from your main application file.
from app import app
if __name__ == "__main__":
app.run()