1
0
mirror of https://github.com/strongdm/comply synced 2024-06-30 22:14:22 +00:00
comply/vendor/github.com/yosssi/ace/file.go
2018-05-15 14:13:11 -07:00

16 lines
222 B
Go

package ace
// File represents a file.
type File struct {
path string
data []byte
}
// NewFile creates and returns a file.
func NewFile(path string, data []byte) *File {
return &File{
path: path,
data: data,
}
}