BotSharp/Platform.Articulate/Controllers/ParseControllercs.cs

20 lines
423 B
C#
Raw Normal View History

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