mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 00:06:38 +00:00
11 lines
113 B
Go
11 lines
113 B
Go
package connprofile
|
|
|
|
var (
|
|
Profiler *ConnProfiler
|
|
)
|
|
|
|
func init() {
|
|
Profiler = NewConnProfiler()
|
|
go report()
|
|
}
|