9 lines
164 B
Python
9 lines
164 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class FrontendConfig(AppConfig):
|
|
name = "frontend"
|
|
|
|
def ready(self) -> None:
|
|
from . import models # noqa: F401
|