mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-20 01:33:15 +00:00
6 lines
93 B
Python
6 lines
93 B
Python
from django.urls import path
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path('', index),
|
|
] |