mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
6 lines
123 B
Python
6 lines
123 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import Bookmark
|
|
|
|
admin.site.register(Bookmark)
|