mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-14 23:07:49 -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
|