11 lines
210 B
Python
11 lines
210 B
Python
"""
|
|
social app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class SocialConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.social'
|
|
verbose_name = 'Social'
|