mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-10 22:46:34 +03:00
7 lines
120 B
Python
7 lines
120 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from users.models import User
|
|
|
|
admin.site.register(User)
|