agent/pkg/monitor/harvest_example_test.go
Virgil 65970527e8 fix(ax): centralise workspace path helpers
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-29 21:11:46 +00:00

14 lines
313 B
Go

// SPDX-License-Identifier: EUPL-1.2
package monitor
import (
"dappco.re/go/agent/pkg/agentic"
core "dappco.re/go/core"
)
func Example_sharedWorkspaceStatusPath() {
path := agentic.WorkspaceStatusPath("/srv/workspace/core/go-io/task-5")
core.Println(core.HasSuffix(path, "status.json"))
// Output: true
}