9 lines
174 B
Python
9 lines
174 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AddressConfig(AppConfig):
|
|
"""
|
|
Define config for the member app so that we can hook in signals.
|
|
"""
|
|
name = 'address'
|