This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/apps.py
2023-04-24 18:03:23 +02:00

12 lines
230 B
Python

"""
RepApp application.
"""
from django.apps import AppConfig
class RepappConfig(AppConfig):
"""
Django config for RepApp application.
"""
default_auto_field = 'django.db.models.BigAutoField'
name = 'repapp'