Пример #1
0
 public IActionResult GetApis()
 {
     try
     {
         return(Ok(new
         {
             apis = apiDb.GetApis()
         }));
     }
     catch (Exception ex)
     {
         logger.Error(ex.Message);
         throw;
     }
 }