from django.urls import path, re_path from rest_framework import routers, serializers, viewsets from . import views urlpatterns = [ # re_path('', views.info), re_path('^info', views.info), re_path('^hhhh', views.test), re_path('', views.index), ]