mirror of
https://github.com/sissbruecker/linkding
synced 2025-02-16 12:28:23 +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)
|