Seenginx/Seenginx/Services/NginxService.cs

22 lines
445 B
C#

using Seenginx.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Seenginx.Services
{
public class NginxService : INginxService
{
public async Task<IEnumerable<ConfigFile>> GetFiles(NginxFilter filter = null)
{
return new List<ConfigFile>();
}
public async Task<Result<bool>> TestNginxConfigurations()
{
return new Result<bool>();
}
}
}