Files
gos/src/Gos.Infrastructure/Search/Indexes/ConcordanceIndexProvider.cs
T
2022-07-06 21:35:05 +02:00

13 lines
303 B
C#

using Gos.Infrastructure.Search.Dtos;
using Nest;
namespace Gos.Infrastructure.Search.Indexes
{
public class ConcordanceIndexProvider : BaseIndexProvider<EsConcordanceDto>
{
public ConcordanceIndexProvider(IElasticClient client)
: base(client)
{
}
}
}