mirror of
https://github.com/GSA/notifications-api.git
synced 2026-07-25 02:19:45 -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
|