2018-06-13 22:17:35 +00:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using System;
|
2018-05-22 00:39:33 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
2018-06-13 12:23:03 +00:00
|
|
|
|
public interface INlpProvider
|
2018-05-22 00:39:33 +00:00
|
|
|
|
{
|
2018-06-13 22:17:35 +00:00
|
|
|
|
IConfiguration Configuration { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
bool Load();
|
2018-05-22 00:39:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|