Files
notifications-api/app/main/views/index.py
Martyn Inglis e25ca0e434 Basic commit to add get pages showing
- bootstrap script
- run script
- couple of views
- basic config
2015-12-10 10:56:59 +00:00

8 lines
141 B
Python

from flask import jsonify
from .. import main
@main.route('/', methods=['GET'])
def index():
return jsonify(result="hello world"), 200