robosats/frontend/urls.py
2022-01-01 15:58:44 -08:00

6 lines
93 B
Python

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