robosats/frontend/urls.py

6 lines
93 B
Python
Raw Normal View History

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