mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-17 13:07:28 +02:00
9 lines
211 B
Python
9 lines
211 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UserprofileConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'userprofile'
|
|
|
|
def ready(self):
|
|
import userprofile.signals
|