mirror of
https://github.com/ae-utbm/sith.git
synced 2025-01-09 08:31:11 +00:00
10 lines
187 B
Python
10 lines
187 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ComConfig(AppConfig):
|
||
|
name = "com"
|
||
|
verbose_name = "News and communication"
|
||
|
|
||
|
def ready(self):
|
||
|
import com.signals # noqa F401
|