mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-22 16:31:28 +02:00
11 lines
113 B
Go
11 lines
113 B
Go
package connprofile
|
|
|
|
var (
|
|
Profiler *ConnProfiler
|
|
)
|
|
|
|
func init() {
|
|
Profiler = NewConnProfiler()
|
|
go report()
|
|
}
|