mirror of
https://github.com/nelsbrock/NateMan.git
synced 2026-08-14 21:36:49 +02:00
13 lines
178 B
Python
13 lines
178 B
Python
"""
|
|
WSGI-Schnittstelle. Startet NateMan.
|
|
von Niklas Elsbrock
|
|
"""
|
|
|
|
from nateman import create_app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
create_app().run()
|
|
else:
|
|
app = create_app()
|