8 lines
176 B
Python
8 lines
176 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ProfilesConfig(AppConfig):
|
|
name = 'profiles'
|
|
|
|
def ready(self):
|
|
from .signals import create_profile, update_song_plays
|