mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 04:19:39 +00:00
11 lines
158 B
Go
11 lines
158 B
Go
package util
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
)
|
|
|
|
func GetFunctionName(i interface{}) string {
|
|
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
|
|
}
|