mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
10 lines
218 B
Python
10 lines
218 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'),
|
|
]
|