That fuck shit the fascists are using
1/*
2 * Copyright 2024 Signal Messenger, LLC
3 * SPDX-License-Identifier: AGPL-3.0-only
4 */
5
6package org.tm.archive.util
7
8import org.tm.archive.dependencies.ApplicationDependencies
9import org.tm.archive.jobmanager.Job
10import org.tm.archive.jobmanager.JobManager
11
12/** Starts a new chain with this job. */
13fun Job.asChain(): JobManager.Chain {
14 return ApplicationDependencies.getJobManager().startChain(this)
15}