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