mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-02 12:48:32 -04:00
8 lines
141 B
Python
8 lines
141 B
Python
from flask import jsonify
|
|
from .. import main
|
|
|
|
|
|
@main.route('/', methods=['GET'])
|
|
def index():
|
|
return jsonify(result="hello world"), 200
|