mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-22 09:12:25 +00:00
7 lines
119 B
Python
7 lines
119 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
# Register your models here.
|
||
|
from .models import Device
|
||
|
|
||
|
admin.site.register(Device)
|