mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
version update
This commit is contained in:
11
.example/os/glog/glog_context.go
Normal file
11
.example/os/glog/glog_context.go
Normal file
@ -0,0 +1,11 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
c := context.WithValue(context.Background(), "key", "value")
|
||||
fmt.Printf("%v", c)
|
||||
}
|
||||
@ -1,4 +1,4 @@
|
||||
package gf
|
||||
|
||||
const VERSION = "v1.9.9"
|
||||
const VERSION = "v1.9.10"
|
||||
const AUTHORS = "john<john@goframe.org>"
|
||||
|
||||
Reference in New Issue
Block a user