4d56d18a24
Since we store model's instances in cache, this will help django figure out the correct model when unserializing cache data.
8 lines
141 B
Python
8 lines
141 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ChatBoxConfig(AppConfig):
|
|
name = "chat_box"
|
|
|
|
def ready(self):
|
|
from . import models
|