/* 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 */ #![feature(async_closure)] #![feature(exit_status_error)] use tokio::sync::Semaphore; pub mod image; pub mod snippet; pub mod subtitles; static LOCAL_TRANSCODING_TASKS: Semaphore = Semaphore::const_new(2);