14 lines
246 B
Python
14 lines
246 B
Python
"""Webapp app configurations."""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class WebappConfig(AppConfig):
|
|
"""Webapp configurations."""
|
|
|
|
name = "webapp"
|
|
|
|
def ready(self):
|
|
"""Import translations."""
|
|
import webapp.translation
|