Skip to content

Commit

Permalink
Code analyzer violation fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
wAsnk committed Dec 12, 2024
1 parent fa36734 commit 0308724
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
using Lombiq.Hosting.Tenants.Maintenance.Extensions;
using Lombiq.Hosting.Tenants.Maintenance.Models;
using Lombiq.Hosting.Tenants.Maintenance.Services;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using OfficeFreund.OpenId.Constants;
using OfficeFreund.OpenId.Services;
using OfficeFreund.OpenId.Settings;
using OrchardCore.ContentManagement.Utilities;
using OrchardCore.Environment.Shell;
using OrchardCore.Modules;
using OrchardCore.OpenId.Configuration;
using OrchardCore.OpenId.Services;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@

namespace Lombiq.Hosting.Tenants.Maintenance.Services;

/// <summary>
/// Implementations of this interface can be used to execute custom maintenance tasks.
/// </summary>
public interface ICustomMaintenanceHandler
{
/// <summary>
/// Executes the maintenance logic.
/// </summary>
Task ExecuteAsync(MaintenanceTaskExecutionContext context);
}

0 comments on commit 0308724

Please sign in to comment.