Example #1
0
        public IActionResult ShowCache()
        {
            string content = TeamModel.PrintCache();

            Log("call ShowCache method");
            //content.Append("]");
            var response = new
            {
                cache = content
            };


            return(Ok(response));
        }