1234567891011121314151617 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from django.http import JsonResponse
- '''
- '''
- def get_token(request):
- return JsonResponse({
- 'error': 'Under construction'
- })
- '''
- '''
- def verify_token(request):
- return JsonResponse({
- 'error': 'Under construction'
- })
|