mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
19 lines
438 B
C#
19 lines
438 B
C#
using Bit.Core;
|
|
using Bit.Core.Jobs;
|
|
using Quartz;
|
|
|
|
namespace Bit.Api.Jobs
|
|
{
|
|
public class AliveJob : BaseJob
|
|
{
|
|
public AliveJob(ILogger<AliveJob> logger)
|
|
: base(logger) { }
|
|
|
|
protected override Task ExecuteJobAsync(IJobExecutionContext context)
|
|
{
|
|
_logger.LogInformation(Constants.BypassFiltersEventId, null, "It's alive!");
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
}
|