Files
utils/runtimex/runtimex_test.go
T

12 lines
185 B
Go
Raw Normal View History

2023-09-16 20:14:20 +08:00
package runtimex_test
import (
"testing"
"yunink/app/pkg/runtimex"
)
func TestGetgId(t *testing.T) {
t.Log("测试获取goroutine_id")
t.Log("goroutine_id:", runtimex.GetGid())
}