mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-18 13:38:53 -04:00
8 lines
145 B
Python
8 lines
145 B
Python
from flask import jsonify
|
|
from .. import main
|
|
|
|
|
|
@main.route('/', methods=['GET'])
|
|
def get_index():
|
|
return jsonify(result="hello world"), 200
|