All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m33s
Merges full history from art-dag/mono.git into the monorepo under the artdag/ directory. Contains: core (DAG engine), l1 (Celery rendering server), l2 (ActivityPub registry), common (shared templates/middleware), client (CLI), test (e2e). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> git-subtree-dir: artdag git-subtree-mainline:1a179de547git-subtree-split:4c2e716558
14 lines
324 B
Python
14 lines
324 B
Python
# art-celery/tasks - Celery tasks for streaming video rendering
|
|
#
|
|
# Tasks:
|
|
# 1. run_stream - Execute a streaming S-expression recipe
|
|
# 2. upload_to_ipfs - Background IPFS upload for media files
|
|
|
|
from .streaming import run_stream
|
|
from .ipfs_upload import upload_to_ipfs
|
|
|
|
__all__ = [
|
|
"run_stream",
|
|
"upload_to_ipfs",
|
|
]
|