Exemple #1
0
 public ActionResult GetMeta(string name)
 {
     if (_Idxr.TryGetIndex(name, out var idx))
     {
         return(Ok(idx));
     }
     else
     {
         return(NotFound("object not found"));
     }
 }