Seenginx/Seenginx/Services/INginxService.cs

12 lines
268 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
{
2020-04-19 03:04:46 +02:00
Task<IEnumerable<ConfigFile>> GetFilesAsync();
2020-04-12 20:01:46 +02:00
Task<Result<bool>> TestNginxConfigurations();
}
}