urls.py 162 B

1234567
  1. from django.urls import re_path
  2. from ..world.views import plaintext, json
  3. urlpatterns = [
  4. re_path(r'^plaintext$', plaintext),
  5. re_path(r'^json$', json)
  6. ]