mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
9 lines
230 B
Python
9 lines
230 B
Python
# -*- coding: utf-8 -*-
|
|
__version__ = '1.2.5'
|
|
|
|
default_app_config = 'background_task.apps.BackgroundTasksAppConfig'
|
|
|
|
|
|
def background(*arg, **kw):
|
|
from background_task.tasks import tasks
|
|
return tasks.background(*arg, **kw)
|