-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwsgi.py
More file actions
executable file
·24 lines (20 loc) · 838 Bytes
/
wsgi.py
File metadata and controls
executable file
·24 lines (20 loc) · 838 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
#!/usr/bin/env python3
"""
Copyright::
+===================================================+
| © 2019 Privex Inc. |
| https://www.privex.io |
+===================================================+
| |
| Flask Network Looking Glass |
| |
| Core Developer(s): |
| |
| (+) Chris (@someguy123) [Privex] |
| |
+===================================================+
"""
from lg.app import flask
application = flask
if __name__ == "__main__":
application.run()