mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-02 04:53:51 +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
|
||
|
}
|