Beispiel #1
0
        private async Task<string> ProccessInternal(dynamic input, IBot bot)
        {
            string result = string.Empty;

            try
            {
                result = bot.Process(input);
            }
            catch (Exception exception)
            {
                Console.WriteLine("Error running moduel " + bot.GetType() + " : " + exception);
            }

            return result;
        }