public void Post(string id, [FromBody] string value) { CmdQueues.PostCmd(id, value); }
public string Get(string id) { return(CmdQueues.GetCmd(id)); }