init
This commit is contained in:
commit
4fcbdaa4db
21 changed files with 589 additions and 0 deletions
8
server/urls.py
Normal file
8
server/urls.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('add/<str:origin>/<str:name>/<str:color>/<str:shirt>/<str:hat>/<str:decor>/', views.add, name='add'),
|
||||
path('get/<str:origin>/', views.get, name='get'),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue