This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
microservices/api/urls.py

8 lines
110 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]