Seenginx/Seenginx/Services/INginxService.cs

12 lines
288 B
C#
Raw Normal View History

2020-04-12 20:01:46 +02:00
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();
}
}