add package gdebug; improve gconv/gfile/gset

This commit is contained in:
john
2019-08-09 20:05:36 +08:00
parent 8387710473
commit fda345577a
14 changed files with 84 additions and 68 deletions

View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/gogf/gf/debug/gdebug"
)
func main() {
fmt.Println(gdebug.CallerPackage())
fmt.Println(gdebug.CallerFunction())
}