mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-13 02:53:52 +08:00

* feat: add syncthing for clone mode --------- Co-authored-by: wencaiwulue <895703375@qq.com>
11 lines
128 B
Go
11 lines
128 B
Go
// +build cgo
|
|
// +build !appengine
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func numCgoCall() int64 {
|
|
return runtime.NumCgoCall()
|
|
}
|