public ActionResult StartController(string id)
        {
            var controller = mappedControllers.Find(id);

            if (controller == null)
            {
                return(NotFound($"Cannot find mapped controller with id {id}"));
            }
            mappedControllers.Start(controller);
            return(StatusCode(204));
        }