public override void Handle(IOutput output)
		{
			var message = $"Command not recognized: {_commandText} \nType \"help\" to get a list of available commands";

			output.Notify(message);
		}
		public override void Handle(IOutput output)
		{
			output.Notify(
				"Unable to authorize to MixPanel. Please check that you called set-credentials command with valid project secret prior to calling current command.");
		}
예제 #3
0
		public override void Handle(IOutput output)
		{
			output.Notify("Done!");
		}
		public override void Handle(IOutput output)
		{
			output.Notify($"Execution stopped with an exception <{_ex.GetType().FullName}>, Message: {_ex.Message}");
		}