mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-13 21:37:42 +02:00
6 lines
137 B
Python
6 lines
137 B
Python
from django.contrib import admin
|
|
from .models import Domain, Organization
|
|
|
|
admin.site.register(Domain)
|
|
admin.site.register(Organization)
|