Writer provides a mechanism to write data under a certain name, typically a filename.
| 48 | // Writer provides a mechanism to write data under a certain name, |
| 49 | // typically a filename. |
| 50 | type Writer interface { |
| 51 | Open(name string) (io.WriteCloser, error) |
| 52 | } |
| 53 | |
| 54 | // A FlagSet creates and parses command-line flags. |
| 55 | // It is similar to the standard flag.FlagSet. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…