github.com/yandex/pandora@v0.5.32/lib/ioutil2/closer.go (about)

     1  package ioutil2
     2  
     3  // NopCloser may be embedded to any struct to implement io.Closer doing nothing on closer.
     4  type NopCloser struct{}
     5  
     6  func (NopCloser) Close() error { return nil }