Seenginx/Seenginx/Services/NginxService.cs

22 lines
445 B
C#
Raw Normal View History

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