using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.RestApi.Rasa { #if RASA_UI [Route("[controller]")] public class VersionController : ControllerBase { [HttpGet] public ActionResult Get() { return Ok(new RasaVersionModel { Version = "0.13.0", MinimumCompatibleVersion = "0.13.0" }); } } #endif }