BotSharp/Bot.Rasa.RestApi/EntityItemController.cs

17 lines
314 B
C#
Raw Normal View History

2018-01-02 18:05:35 +00:00
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();
}
}
}