BotSharp/Platform.Articulate/Controllers/ParseControllercs.cs

23 lines
554 B
C#
Raw Normal View History

2018-09-30 15:11:36 +00:00
using Microsoft.AspNetCore.Mvc;
2018-10-01 17:15:17 +00:00
using Microsoft.Extensions.Configuration;
2018-09-30 15:11:36 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Controllers
{
#if ARTICULATE
[Route("[controller]")]
public class ParseControllercs : ControllerBase
{
2018-10-01 17:15:17 +00:00
private readonly IConfiguration configuration;
[HttpGet("/agent/{agentId}/converse")]
public void ParseText([FromRoute] string agentId, [FromQuery] string text, [FromQuery] string sessionId)
2018-09-30 15:11:36 +00:00
{
}
}
#endif
}