This repository has been archived on 2022-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
Twxtter-main/wsgi.py

6 lines
145 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")