10 lines
374 B
Python
10 lines
374 B
Python
import requests
|
|
from django.http import HttpResponse
|
|
from rest_framework.views import APIView
|
|
from rest_framework.viewsets import ViewSet
|
|
from rest_framework.response import Response
|
|
from rest_framework import status
|
|
from rest_framework.decorators import action
|
|
from rest_framework.permissions import AllowAny
|
|
from conf.settings.base import AZURACAST_API_KEY, AZURACAST_URL
|