mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-15 14:47:24 +00:00
14 lines
286 B
Python
14 lines
286 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AssetsConfig(AppConfig):
|
|
name = 'assets'
|
|
|
|
def ready(self):
|
|
from .signals import on_app_ready
|
|
from . import tasks
|
|
on_app_ready.send(self.__class__)
|
|
super().ready()
|