14 lines
233 B
Go
14 lines
233 B
Go
|
|
// SPDX-License-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
package agentic
|
||
|
|
|
||
|
|
import (
|
||
|
|
core "dappco.re/go/core"
|
||
|
|
)
|
||
|
|
|
||
|
|
func Example_planPath() {
|
||
|
|
path := planPath("/tmp/plans", "my-plan")
|
||
|
|
core.Println(core.HasSuffix(path, "my-plan.json"))
|
||
|
|
// Output: true
|
||
|
|
}
|