This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/core/apps.py
2022-11-05 17:51:54 -06:00

13 lines
299 B
Python

from django.apps import AppConfig
from pyld import jsonld
from core.ld import builtin_document_loader
class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "core"
def ready(self) -> None:
jsonld.set_document_loader(builtin_document_loader)