diff options
| author | Bobby <[email protected]> | 2022-11-18 15:12:23 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-18 15:12:23 -0500 |
| commit | dae9aac1bcaeaab86649051cd0ab56a9fecbf63c (patch) | |
| tree | 18f957cd3f5f243ff99e4fda8e1fa9de0dca572b /ignis/urls.py | |
| parent | 09537c60fdcd90431810d5debb5baf2886363052 (diff) | |
| download | thatcomputerscientist-dae9aac1bcaeaab86649051cd0ab56a9fecbf63c.tar.xz thatcomputerscientist-dae9aac1bcaeaab86649051cd0ab56a9fecbf63c.zip | |
rename module
Diffstat (limited to 'ignis/urls.py')
| -rw-r--r-- | ignis/urls.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ignis/urls.py b/ignis/urls.py new file mode 100644 index 00000000..4e931c4d --- /dev/null +++ b/ignis/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from . import views + +app_name = 'ignis' +urlpatterns = [ + path('tex/', views.tex, name='tex'), + path('post_image/<int:post_id>/', views.post_image, name='post_image'), +] |
