public ActionResult <Hash> Get(string id)
        {
            var hashInfo = hashService.GetHashInfo(id);

            return(hashInfo == null ? (ActionResult)NotFound() : Ok(hashInfo));
        }