Commit 7bdad6e4 authored by kranthi.kumar's avatar kranthi.kumar

Delete app.py

parent 0b0caf3f
import logging
from flask import Flask
from scripts.service.login_service import blueprint_inserter
app = Flask(__name__)
app.register_blueprint(blueprint_inserter)
try:
if __name__ == '__main__':
app.run(port=8200)
except Exception as e:
logging.exception("Exception occurred", exc_info=True)
print(e)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment