Example #1
0
 public IActionResult GetValue(string key)
 {
     try
     {
         return(Ok(_githubOptions.GetValue(key)));
     }
     catch
     {
         return(NotFound());
     }
 }