BotSharp/BotSharp.RestApi/Rasa/VersionController.cs
2018-08-14 09:23:15 -05:00

24 lines
503 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Rasa
{
#if MODE_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
}