mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
9 lines
204 B
Go
9 lines
204 B
Go
package sinkcluster
|
|
|
|
import "time"
|
|
|
|
type SinkEntry struct {
|
|
RecordingStart time.Time `json:"recordingStart"`
|
|
RecordingEnd time.Time `json:"recordingEnd"`
|
|
Recorded []byte `json:"recorded"`
|
|
}
|