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