aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--torrent/torrent.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/torrent/torrent.go b/torrent/torrent.go
index 533db86..256887f 100644
--- a/torrent/torrent.go
+++ b/torrent/torrent.go
@@ -3,9 +3,9 @@ package torrent
import "time"
type File struct {
- Length int `bencode:"length"`
- MD5Sum []byte `bencode:"md5sum,optional"`
- Path string `bencode:"path"`
+ Length int `bencode:"length"`
+ MD5Sum []byte `bencode:"md5sum,optional"`
+ Path []string `bencode:"path"`
}
type Info struct {