gold eggs backend
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
This commit is contained in:
20
routes/swagger.py
Executable file
20
routes/swagger.py
Executable file
@@ -0,0 +1,20 @@
|
||||
"""
|
||||
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],
|
||||
)
|
||||
Reference in New Issue
Block a user