4 lines
111 B
Python
4 lines
111 B
Python
from django.contrib import admin
|
|
from .models import MyUser
|
|
# Register your models here.
|
|
admin.register(MyUser) |