mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-09 09:23:44 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
package chunks
|
|
|
|
type DataTrackerTimestampChunkData struct {
|
|
Timestamp uint64
|
|
}
|
|
|
|
type DataTrackerTimestampChunk struct {
|
|
Chunk Chunk
|
|
Data DataTrackerTimestampChunkData
|
|
}
|