mirror of
https://github.com/GSA/notifications-api.git
synced 2026-06-05 05:48:38 -04:00
8 lines
164 B
Python
8 lines
164 B
Python
from flask import jsonify
|
|
from .. import main
|
|
|
|
|
|
@main.route('/notification', methods=['POST'])
|
|
def create_notification():
|
|
return jsonify(result="created"), 201
|