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> GetFiles(NginxFilter filter = null) { return new List(); } public async Task> TestNginxConfigurations() { return new Result(); } } }