Sign in
go
/
website
/
efdc4abaaa729022c9fd6aa4ca27461e175129bc
/
.
/
_content
/
talks
/
2014
/
readability
/
implement-interface-good.go
blob: 697ba953cfafd151af3140c71e7ce31878a5038f [
file
]
// +build ignore,OMIT
package sample
// OMIT
import "scan"
// OMIT
// ColumnWriter is a writer to write ...
type ColumnWriter struct {
tmpDir string
// some other fields
}
var _ scan.Writer = (*ColumnWriter)(nil)
// HL