Seenginx/Seenginx/Services/INginxService.cs

12 lines
288 B
C#

using Seenginx.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Seenginx.Services
{
public interface INginxService
{
Task<IEnumerable<ConfigFile>> GetFiles(NginxFilter filter = null);
Task<Result<bool>> TestNginxConfigurations();
}
}