mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
6 lines
250 B
C#
6 lines
250 B
C#
namespace Artemis.WebClient.Workshop.Handlers.UploadHandlers;
|
|
|
|
public interface IEntryUploadHandler
|
|
{
|
|
Task<EntryUploadResult> CreateReleaseAsync(long entryId, IEntrySource entrySource, string? changelog, CancellationToken cancellationToken);
|
|
} |