github.com/kaituanwang/hyperledger@v2.0.1+incompatible/common/metrics/gendoc/testdata/ignored.go (about)

     1  /*
     2  Copyright IBM Corp. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  package testdata
     8  
     9  import "github.com/hyperledger/fabric/common/metrics"
    10  
    11  //gendoc:ignore
    12  
    13  // This should be ignored by doc generation because of the gendoc:ignore statement above.
    14  
    15  var (
    16  	Ignored = metrics.CounterOpts{
    17  		Namespace: "ignored",
    18  		Name:      "ignored",
    19  	}
    20  )