mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
8 lines
179 B
Python
8 lines
179 B
Python
"""
|
|
Admin interface models. Automatically detected by admin.autodiscover().
|
|
"""
|
|
from django.contrib import admin
|
|
from sso.models import *
|
|
|
|
admin.site.register(sso.models.Service)
|