You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-11-23 21:34:45 +02:00
8 lines
108 B
Python
8 lines
108 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('', views.index, name = 'index')
|
||
|
|
]
|