BetterTwitFix/wsgi.py
adryd 7bbcd75600
Fix tweet text content appearing in telegram
- Fix video quality sorting
 - Fix screenName being empty
 - Fix img accessed before declaration
 - Hopefully tweet text content shows now in telegram
 - Add flask_cors dependency
 - Remove unnecesary react-helmet garbage
2022-05-03 11:13:34 -04:00

5 lines
144 B
Python

from twitfix import app
if __name__ == "__main__":
# listen on 0.0.0.0 to facilitate testing with real services
app.run(host='0.0.0.0')