17 lines
314 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|