You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
373 B
16 lines
373 B
from django.urls import path
|
|
from django.conf.urls import url
|
|
from rest_framework import routers
|
|
from . import views
|
|
|
|
app_name = 'postamates'
|
|
router = routers.DefaultRouter()
|
|
|
|
|
|
urlpatterns = router.urls
|
|
|
|
urlpatterns += [
|
|
path('ao_and_rayons/', views.ao_and_rayons.as_view(), name='ao_and_rayons'),
|
|
path('raschet/', views.raschet.as_view(), name='ao_and_rayons'),
|
|
]
|