mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-17 23:37:47 +02:00
11 lines
294 B
Python
11 lines
294 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='scan_engine_index'),
|
|
path('add', views.add_engine, name='add_engine'),
|
|
path('delete/<int:id>', views.delete_engine, name='delete_engine_url'),
|
|
]
|