9 lines
156 B
Python
9 lines
156 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
|
|
from django.contrib import admin
|
|
|
|
from .models import OTPSeed
|
|
|
|
admin.site.register(OTPSeed)
|