BotSharp/Bot.Rasa.RestApi/EntityItemController.cs
2018-01-02 12:05:35 -06:00

17 lines
314 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.RestApi
{
public class EntityItemController : EssentialController
{
[HttpPost]
public IActionResult CreateEntity()
{
return Ok();
}
}
}