agent/pkg/agentic/remote_example_test.go

12 lines
257 B
Go
Raw Normal View History

// SPDX-License-Identifier: EUPL-1.2
package agentic
import core "dappco.re/go/core"
func ExampleDispatchInput() {
input := DispatchInput{Repo: "go-io", Task: "Fix tests", Agent: "codex"}
core.Println(input.Repo, input.Agent)
// Output: go-io codex
}