// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System.Threading; using System.Threading.Tasks; namespace Squidex.Infrastructure { public interface IBackgroundProcess { Task StartAsync(CancellationToken ct); } }