Files
notifications-api/app/main/views/index.py
T

13 lines
246 B
Python
Raw Normal View History

2015-12-10 10:56:59 +00:00
from flask import jsonify
from .. import main
@main.route('/', methods=['GET'])
2015-12-11 16:57:00 +00:00
def get_index():
return jsonify(result="hello world"), 200
@main.route('/', methods=['POST'])
def post_index():
2015-12-10 10:56:59 +00:00
return jsonify(result="hello world"), 200