mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-16 04:43:38 +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
|
|
}
|