BotSharp/BotSharp.RestApi/Ontology/EntityController.cs
2018-08-11 13:17:15 -05:00

24 lines
592 B
C#

using BotSharp.Core.Engines;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Ontology
{
[Route("v1/[controller]/[action]")]
public class EntityController : ControllerBase
{
private readonly IBotPlatform _platform;
/// <summary>
/// Initialize dialog controller and get a platform instance
/// </summary>
/// <param name="platform"></param>
public EntityController(IBotPlatform platform)
{
_platform = platform;
}
}
}