mirror of
https://github.com/Llloooggg/WhereToGo.git
synced 2026-03-05 20:26:23 +03:00
9 lines
223 B
Python
9 lines
223 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class MapConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "maps"
|
|
verbose_name = _("Maps")
|