def get(self): """ Returns the index page """ return app.send_static_file('index.html')
def get(self): """ Return something useful by default """ return app.send_static_file('index.html')
def index(): """ Root URL response """ return app.send_static_file('index.html')
def index(): """ Send back the home page """ app.logger.info('Request for home page') return app.send_static_file('index.html')
def get(self): """ Returns the index page """ #return 'Hello World, from Recommendation microservice' return app.send_static_file('index.html')
def index(): return app.send_static_file('index.html')