mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 05:20:54 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
package utils
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
)
|
|
|
|
func GetFuncName(i interface{}) string {
|
|
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
|
|
}
|