from appservices import app
from flask import Flask, render_template, send_from_directory, request, redirect, jsonify, url_for

@app.route('/api')
def hello_world():
	return render_template('site/index.html')


if __name__ == "__main__":
    app.run() 
            
