mirror of https://github.com/tgragnato/magnetico
9 lines
338 B
Go
9 lines
338 B
Go
package metainfo
|
|
|
|
// See BEP 47. This is common to both Info and FileInfo.
|
|
type ExtendedFileAttrs struct {
|
|
Attr string `bencode:"attr,omitempty" json:"attr,omitempty"`
|
|
SymlinkPath []string `bencode:"symlink path,omitempty" json:"symlink path,omitempty"`
|
|
Sha1 string `bencode:"sha1,omitempty" json:"sha1,omitempty"`
|
|
}
|