mirror of
https://github.com/xxjwxc/public.git
synced 2025-09-26 20:01:19 +08:00
12 lines
186 B
Go
12 lines
186 B
Go
package tools
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
)
|
|
|
|
// GetFuncName 获取函数名
|
|
func GetFuncName(f interface{}) string {
|
|
return runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
|
|
}
|