Let's say I have two python packages
producer
consumer
they live in a different repositories (and running on separate servers)
I would like to use Celery implement some background tasks
so that producer
will create tasks and consumer
will execute them
Now, celery seems done that way that tasks code must be shared between consumer
and producer
...
Is there a way to make it possible to start celery task from producer so that producer
never knows the actual source code of the consumer
?