mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-27 22:43:15 +08:00
11 lines
236 B
Python
11 lines
236 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BookmarksConfig(AppConfig):
|
|
name = "bookmarks"
|
|
|
|
def ready(self):
|
|
# Register signal handlers
|
|
# noinspection PyUnusedImports
|
|
import bookmarks.signals # noqa: F401
|