1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-10 15:07:13 +00:00
Beego/utils/caller.go

18 lines
486 B
Go
Raw Permalink Normal View History

2014-04-12 13:18:18 +08:00
// Beego (http://beego.me/)
// @description beego is an open-source, high-performance web framework for the Go programming language.
// @link http://github.com/astaxie/beego for the canonical source repository
// @license http://github.com/astaxie/beego/blob/master/LICENSE
// @authors astaxie
2013-12-11 22:18:45 +08:00
package utils
import (
"reflect"
"runtime"
)
// get function name
2013-12-11 22:18:45 +08:00
func GetFuncName(i interface{}) string {
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
}