Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
21 lines
539 B
Python
Executable File
21 lines
539 B
Python
Executable File
"""
|
|
Swagger urls
|
|
"""
|
|
|
|
from drf_yasg import openapi
|
|
from rest_framework import permissions
|
|
from drf_yasg.views import get_schema_view
|
|
|
|
schema_view = get_schema_view(
|
|
openapi.Info(
|
|
title="Snippets API",
|
|
default_version="v1",
|
|
description="Test description",
|
|
terms_of_service="https://www.google.com/policies/terms/",
|
|
contact=openapi.Contact(email="JscorpTech@gmail.com"),
|
|
license=openapi.License(name="BSD License"),
|
|
),
|
|
public=True,
|
|
permission_classes=[permissions.AllowAny],
|
|
)
|