mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
9 lines
144 B
Python
9 lines
144 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "users"
|
|
|
|
def ready(self):
|
|
import users.signals # noqa
|