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