21 lines
454 B
C#
21 lines
454 B
C#
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Yitter.IdGenerator;
|
|
using YuanXuan.IM.Common.Attributes;
|
|
|
|
namespace YuanXuan.IM.Api.Hangfire
|
|
{
|
|
[Inject]
|
|
public class HangfireJobs : IAdminHangfireJobs
|
|
{
|
|
private readonly ILogger<HangfireJobs> _logger;
|
|
public HangfireJobs(ILogger<HangfireJobs> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
}
|
|
}
|