github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/talks/2014/readability/long-line-nofold.go (about)

     1  // +build OMIT
     2  
     3  package sampling
     4  
     5  import (
     6  	servicepb "foo/bar/service_proto"
     7  )
     8  
     9  type SamplingServer struct {
    10  	// some fields
    11  }
    12  
    13  func (server *SamplingServer) SampleMetrics(sampleRequest *servicepb.Request, sampleResponse *servicepb.Response, latency time.Duration) { // HL
    14  	// some code
    15  }