mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-17 23:37:47 +02:00
10 lines
287 B
Python
10 lines
287 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name="start_scan"),
|
|
path('history/', views.scan_history, name="scan_history"),
|
|
path('detail/<int:id>', views.detail_scan, name='detail_scan'),
|
|
]
|