ConceptPortal-public/rsconcept/backend/apps/oss/urls.py
Ivan 642a94b565
Some checks are pending
Backend CI / build (3.12) (push) Waiting to run
Frontend CI / build (22.x) (push) Waiting to run
R: restructure backend DB
Warning! This will reset database migrations. Data should be imported manually
2024-07-25 19:12:59 +03:00

13 lines
297 B
Python

''' 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')
urlpatterns = [
path('', include(oss_router.urls)),
]