You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-07-02 22:36:54 +02:00
9 lines
183 B
Python
9 lines
183 B
Python
from django.urls import path, include
|
|
from django.contrib import admin
|
|
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('api/', include('Controls.Django.api.urls')),
|
|
]
|