mirror of
https://gitee.com/johng/gf
synced 2026-06-26 09:27:31 +08:00
12 lines
122 B
Go
12 lines
122 B
Go
package main
|
|
|
|
import "github.com/gogf/gf/os/glog"
|
|
|
|
func Test() {
|
|
glog.Error("This is error!")
|
|
}
|
|
|
|
func main() {
|
|
Test()
|
|
}
|