public async Task <int> ExecuteAsync(GetFeaturesCommand command)
        {
            var features = _templatesService.GetFeatures(command.ProjectType, command.FrontendFramework, command.BackendFramework);

            _messageService.SendResult(MessageType.GetFeaturesResult, features);

            return(await Task.FromResult(0));
        }