mirror of
https://gitee.com/johng/gf
synced 2026-06-06 16:21:40 +08:00
12 lines
159 B
Go
12 lines
159 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/debug/gdebug"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gdebug.CallerPackage())
|
|
fmt.Println(gdebug.CallerFunction())
|
|
}
|