How to develop a Worker in Go
Develop an instance of a Worker by calling `worker.New()`, available via the `go.temporal.io/sdk/worker` package.
Develop an instance of a Worker by calling `worker.New()`, available via the `go.temporal.io/sdk/worker` package.
Use the `newWorker` method on an instance of a `WorkerFactory` to create a new Worker in Java.
Use `worker.registerWorkflowImplementationTypes` to register Workflow type and `worker.registerActivitiesImplementations` to register Activity implementation with Workers.