mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-21 12:41:34 +01:00
10 lines
126 B
Go
10 lines
126 B
Go
package configurer
|
|
|
|
import "time"
|
|
|
|
type WGStats struct {
|
|
LastHandshake time.Time
|
|
TxBytes int64
|
|
RxBytes int64
|
|
}
|