mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-22 16:02:09 +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
|