kopia lustrzana https://github.com/cirospaciari/socketify.py
8 wiersze
177 B
Python
8 wiersze
177 B
Python
![]() |
from django.urls import path
|
||
|
from world.views import plaintext, json
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('plaintext', plaintext, name='plaintext'),
|
||
|
path('json', json, name='json'),
|
||
|
]
|