Files
temporal/chasm/workflow.go
Fred Tzeng 41f1650908 Remove 1 day retention for standalone activities (#9645)
## What changed?
Remove 1 day retention for standalone activities

## Why?
No longer needed as we have tiered storage in place now

## How did you test it?
- [X] built
- [X] run locally and tested manually
- [X] covered by existing tests
- [ ] added new unit test(s)
- [ ] added new functional test(s)
2026-03-24 21:21:06 -04:00

12 lines
249 B
Go

package chasm
const (
WorkflowLibraryName = "workflow"
WorkflowComponentName = "workflow"
)
var (
WorkflowArchetype = FullyQualifiedName(WorkflowLibraryName, WorkflowComponentName)
WorkflowArchetypeID = GenerateTypeID(WorkflowArchetype)
)