agent/cmd/core-agent/commands_example_test.go
Virgil 364007d424 fix(ax): add missing examples and helper coverage
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-29 21:44:22 +00:00

15 lines
250 B
Go

// SPDX-License-Identifier: EUPL-1.2
package main
import (
"dappco.re/go/core"
)
func Example_registerAppCommands() {
c := core.New(core.WithOption("name", "core-agent"))
registerAppCommands(c)
core.Println(len(c.Commands()))
// Output: 3
}