mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-07 22:10:12 +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
|
|
}
|