mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 13:51:09 -05:00
6 lines
103 B
Python
6 lines
103 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path("v1/", include("apps.api.v1.urls")),
|
|
]
|