mirror of
https://github.com/ae-utbm/sith.git
synced 2025-01-08 16:11:17 +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
|