69f56d6951
Made SuperblockFlags public so you can set options when writing
13 lines
217 B
Go
13 lines
217 B
Go
package squashfs
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
//WriteTo attempts to write the archive to the given io.Writer.
|
|
func (w *Writer) WriteTo(write io.Writer) (int64, error) {
|
|
//TODO
|
|
return 0, errors.New("I SAID DON'T")
|
|
}
|