Files
temporal/chasm/fx.go
Yichao Yang b8bb1380b7 CHASM Visibility: Component and task processing (#8080)
## 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)
2025-07-31 15:18:46 -07:00

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{})
}),
)