diff options
author | clarkzjw <[email protected]> | 2023-02-21 16:46:11 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-21 16:46:11 -0800 |
commit | 22fb6a357f1b6b91f04a180604e2f992280ee661 (patch) | |
tree | 0ed80d12ac41475138077891ffea0bb78fe392cb /bot/urls.py | |
parent | 0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e (diff) | |
download | swarm2fediverse-feature/django.tar.gz |
add django app templatefeature/django
Diffstat (limited to 'bot/urls.py')
-rw-r--r-- | bot/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bot/urls.py b/bot/urls.py new file mode 100644 index 0000000..88a9cac --- /dev/null +++ b/bot/urls.py | |||
@@ -0,0 +1,7 @@ | |||
1 | from django.urls import path | ||
2 | |||
3 | from . import views | ||
4 | |||
5 | urlpatterns = [ | ||
6 | path('', views.index, name='index'), | ||
7 | ] | ||