BotSharp/Bot.Rasa.RestApi/EntityController.cs

18 lines
357 B
C#
Raw Normal View History

2017-12-30 20:26:35 +00:00
using Bot.Rasa.Entities;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.RestApi
{
public class EntityController : EssentialController
{
[HttpPost]
public string CreateEntity([FromBody] Entity entity)
2017-12-30 20:26:35 +00:00
{
return entity.Id;
}
}
}