Writer provides a mechanism to write data under a certain name, typically a filename.
| 80 | // Writer provides a mechanism to write data under a certain name, |
| 81 | // typically a filename. |
| 82 | type Writer interface { |
| 83 | Open(name string) (io.WriteCloser, error) |
| 84 | } |
| 85 | |
| 86 | // A FlagSet creates and parses command-line flags. |
| 87 | // It is similar to the standard flag.FlagSet. |
no outgoing calls
no test coverage detected
searching dependent graphs…