revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
14 lines
275 B
Go
14 lines
275 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package agentic
|
|
|
|
import (
|
|
core "dappco.re/go/core"
|
|
)
|
|
|
|
func Example_resolveWorkspace() {
|
|
// Non-existent workspace → empty string
|
|
resolved := resolveWorkspace("nonexistent/workspace")
|
|
core.Println(resolved == "")
|
|
// Output: true
|
|
}
|