mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
6 lines
93 B
Python
6 lines
93 B
Python
from django.urls import path
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path('', index),
|
|
] |