mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
11 lines
234 B
C#
11 lines
234 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace MalwareMultiScan.Api.Services.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Receiver hosted service.
|
|
/// </summary>
|
|
public interface IReceiverHostedService : IHostedService
|
|
{
|
|
}
|
|
} |