using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi
{
[Route("[controller]/[action]")]
public class AgentController : ControllerBase
{
///
/// Restore a agent from a uploaded zip file
///
///
///
[HttpGet("{agentId}")]
public ActionResult Restore([FromRoute] String agentId)
{
return Ok();
}
}
}