Writer handles VSA file writing
| 324 | |
| 325 | // Writer handles VSA file writing |
| 326 | type Writer struct { |
| 327 | FS afero.Fs // defaults to the package-level FS or afero.NewOsFs() |
| 328 | TempDirPrefix string // defaults to "vsa-" |
| 329 | FilePerm os.FileMode // defaults to 0o600 |
| 330 | } |
| 331 | |
| 332 | // NewWriter creates a new VSA file writer |
| 333 | func NewWriter() *Writer { |
nothing calls this directly
no outgoing calls
no test coverage detected