mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 14:11:23 -04:00
17 lines
270 B
Go
17 lines
270 B
Go
package snowflake_broker
|
|
|
|
import (
|
|
// "golang.org/x/net/internal/timeseries"
|
|
"time"
|
|
)
|
|
|
|
// Implements Observable
|
|
type Metrics struct {
|
|
// snowflakes timeseries.Float
|
|
clientRoundtripEstimate time.Duration
|
|
}
|
|
|
|
func NewMetrics() *Metrics {
|
|
m := new(Metrics)
|
|
return m
|
|
}
|