16 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from celery import Celery
 | 
						|
 | 
						|
from backend.config import CELERY_BROKER_URL, CELERY_RESULT_BACKEND
 | 
						|
 | 
						|
celery = Celery(
 | 
						|
    __name__,
 | 
						|
    broker=CELERY_BROKER_URL,
 | 
						|
    backend=CELERY_RESULT_BACKEND
 | 
						|
)
 | 
						|
celery.conf.result_backend_transport_options = {
 | 
						|
    'global_keyprefix': 'crm_'
 | 
						|
}
 | 
						|
celery.conf.task_default_queue = 'crm'
 | 
						|
 | 
						|
from .tasks import *
 |