This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from gevent_zeromq import zmq | |
| from rest_framework.decorators import api_view | |
| import json | |
| import time | |
| from rest_framework.response import Response | |
| from django.http import HttpResponseNotFound | |
| @api_view(['POST']) | |
| def NOTIFICATION(request): | |
| if request.method == 'POST': |