mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-21 18:32:01 +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)
|