mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-17 05:13:36 +00:00
11 lines
169 B
Go
11 lines
169 B
Go
package chunks
|
|
|
|
type InfoTrackerListChunkData struct {
|
|
Trackers []InfoTrackerChunk
|
|
}
|
|
|
|
type InfoTrackerListChunk struct {
|
|
Chunk Chunk
|
|
Data InfoTrackerListChunkData
|
|
}
|