mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
10 lines
211 B
Python
10 lines
211 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='targetIndex'),
|
|
path('add/', views.addTarget, name='addTarget'),
|
|
]
|