add gdebug.BuildInfo function; improving gproc

This commit is contained in:
John
2019-12-09 21:53:44 +08:00
parent 6ca5141020
commit 28825f5395
8 changed files with 64 additions and 22 deletions

View File

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