mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
8 lines
204 B
Python
8 lines
204 B
Python
|
from celery import task
|
||
|
from lib.main.models import *
|
||
|
|
||
|
@task(name='run_launch_job')
|
||
|
def run_launch_job(launch_job_pk):
|
||
|
launch_job = LaunchJob.objects.get(pk=launch_job_pk)
|
||
|
# FIXME: Do stuff here!
|