Initial commit

This commit is contained in:
2022-07-06 21:35:05 +02:00
commit b2494052ff
97220 changed files with 2449256 additions and 0 deletions
@@ -0,0 +1,13 @@
using Gos.Infrastructure.Search.Dtos;
using Nest;
namespace Gos.Infrastructure.Search.Indexes
{
public class ConcordanceIndexProvider : BaseIndexProvider<EsConcordanceDto>
{
public ConcordanceIndexProvider(IElasticClient client)
: base(client)
{
}
}
}