-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwsgi.py
executable file
·31 lines (23 loc) · 975 Bytes
/
wsgi.py
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
26
27
28
29
#!/usr/bin/env python3
"""
Copyright::
+===================================================+
| © 2023 Someguy123 |
| https://github.com/Someguy123 |
+===================================================+
| |
| Fix Mastodon Embeds (FxMastodon) |
| License: MIT X/11 |
| |
| https://github.com/Someguy123/fxmastodon |
| |
| Core Developer(s): |
| |
| (+) Chris (@someguy123) |
| |
+===================================================+
"""
from app import app as f_app
application = f_app
if __name__ == "__main__":
application.run()