Commit 3b19c867 authored by kranthi.kumar's avatar kranthi.kumar

Delete app.py

parent 9cdcba13
import logging
from flask import Flask,session
from scripts.service.login_service import blueprint_object
app = Flask(__name__)
app.secret_key = 'super secret key'
app.register_blueprint(blueprint_object)
try:
if __name__ == '__main__':
app.run(port=8300)
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