aboutsummaryrefslogtreecommitdiff
path: root/transcoder/src/lib.rs
blob: 673946bef2fea3935c7153b2dc04cd3de7c362b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2023 metamuffin <metamuffin.org>
*/
#![feature(async_closure)]
#![feature(exit_status_error)]

use tokio::sync::Semaphore;
pub mod image;
pub mod snippet;

static LOCAL_TRANSCODING_TASKS: Semaphore = Semaphore::const_new(2);