mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
9 lines
224 B
Python
9 lines
224 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class QuizConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "quiz"
|
|
verbose_name = _("quiz")
|