13 lines
381 B
Python
13 lines
381 B
Python
# Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# See the LICENSE file for details.
|
|
|
|
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def process_voice_task_session(voice_session_id):
|
|
from plane.app.views.voice_tasker import process_voice_task_session_pipeline
|
|
|
|
process_voice_task_session_pipeline(voice_session_id)
|