ConceptPortal-public/rsconcept/backend/apps/oss/urls.py

13 lines
297 B
Python
Raw Normal View History

2024-07-19 19:29:27 +03:00
''' Routing: Operation Schema. '''
from django.urls import include, path
from rest_framework import routers
from . import views
oss_router = routers.SimpleRouter(trailing_slash=False)
oss_router.register('oss', views.OssViewSet, 'OSS')
2024-07-19 19:29:27 +03:00
urlpatterns = [
path('', include(oss_router.urls)),
2024-07-19 19:29:27 +03:00
]