Files
runtimex/runtimex_test.go
2023-12-27 18:30:31 +08:00

14 lines
189 B
Go

package runtimex_test
import (
"testing"
"code.yun.ink/pkg/runtimex"
)
func TestGetgId(t *testing.T) {
t.Log("测试获取goroutine_id")
t.Log("goroutine_id:", runtimex.GetGid())
}