Package thread provides threading facilities, such as scheduling calls on a specific thread, local storage, etc.
import "golang.design/x/thread"
th := thread.New()
th.Call(func() {
// call on the created thread
})
MIT © 2021 The golang.design Initiative