8 lines
172 B
C#
8 lines
172 B
C#
|
using Microsoft.Extensions.Configuration;
|
||
|
|
||
|
namespace Newsbot.Collector.Domain.Interfaces;
|
||
|
|
||
|
public interface IHangfireJob
|
||
|
{
|
||
|
void InitAndExecute(IConfiguration config);
|
||
|
}
|