-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwsgi.py
More file actions
executable file
·25 lines (21 loc) · 922 Bytes
/
wsgi.py
File metadata and controls
executable file
·25 lines (21 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
"""
Copyright::
+===================================================+
| © 2021 Privex Inc. |
| https://www.privex.io |
+===================================================+
| |
| IP Address Information Tool |
| |
| Core Developer(s): |
| |
| (+) Chris (@someguy123) [Privex] |
| |
+===================================================+
"""
from myip import settings
from myip.app import app
application = app
if __name__ == "__main__":
application.run(host=settings.HOST, port=settings.PORT, debug=settings.DEBUG)