agent/cmd/core-agent/update_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

14 lines
263 B
Go

// SPDX-License-Identifier: EUPL-1.2
package main
import core "dappco.re/go/core"
func Example_updateChannel() {
oldVersion := version
version = "0.15.0-alpha"
defer func() { version = oldVersion }()
core.Println(updateChannel())
// Output: prerelease
}