mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
6 lines
166 B
Python
6 lines
166 B
Python
from django.contrib import admin
|
|
from startScan.models import ScanHistory, ScannedSubdomains
|
|
|
|
admin.site.register(ScanHistory)
|
|
admin.site.register(ScannedSubdomains)
|