mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-10 09:53:51 +00:00
10 lines
168 B
Go
10 lines
168 B
Go
package chunks
|
|
|
|
type DataTrackerListChunkData struct {
|
|
Trackers []DataTrackerChunk
|
|
}
|
|
type DataTrackerListChunk struct {
|
|
Chunk Chunk
|
|
Data DataTrackerListChunkData
|
|
}
|