public IActionResult Push([FromBody] string name)
 {
     _dataStorage.AddUser(name);
     return(Ok());
 }