10 lines
175 B
Python
10 lines
175 B
Python
"""Django apps configuration file."""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class InfoscreenConfig(AppConfig):
|
|
"""Infoscreen app configuration."""
|
|
|
|
name = "infoscreen"
|