mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 11:55:12 -04:00
6 lines
125 B
Python
6 lines
125 B
Python
|
|
from django.contrib import admin
|
||
|
|
from api.models import PeerUser
|
||
|
|
|
||
|
|
# Register your models here.
|
||
|
|
admin.site.register(PeerUser)
|