mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? - Add CHASM built-in visibility component and task processing logic ## Why? - Basic chasm visibility work for unblocking Scheduler migration. ## How did you test it? - [x] built - [ ] run locally and tested manually - [ ] covered by existing tests - [x] added new unit test(s) - [x] added new functional test(s)
12 lines
194 B
Go
12 lines
194 B
Go
package chasm
|
|
|
|
import "go.uber.org/fx"
|
|
|
|
var Module = fx.Module(
|
|
"chasm",
|
|
fx.Provide(NewRegistry),
|
|
fx.Invoke(func(registry *Registry) error {
|
|
return registry.Register(&CoreLibrary{})
|
|
}),
|
|
)
|