BotSharp/BotSharp.Platform.Rasa/Controllers/VersionController.cs

24 lines
511 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Controllers
{
#if RASA
[Route("[controller]")]
public class VersionController : ControllerBase
{
[HttpGet]
public ActionResult<RasaVersionModel> Get()
{
return Ok(new RasaVersionModel
{
Version = "0.13.0",
MinimumCompatibleVersion = "0.13.0"
});
}
}
#endif
}