2026-03-29 21:44:22 +00:00
|
|
|
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
2026-03-30 16:40:53 +00:00
|
|
|
import (
|
|
|
|
|
agentpkg "dappco.re/go/agent"
|
|
|
|
|
core "dappco.re/go/core"
|
|
|
|
|
)
|
2026-03-29 21:44:22 +00:00
|
|
|
|
|
|
|
|
func Example_updateChannel() {
|
2026-03-30 16:40:53 +00:00
|
|
|
oldVersion := agentpkg.Version
|
|
|
|
|
agentpkg.Version = "0.15.0-alpha"
|
|
|
|
|
defer func() { agentpkg.Version = oldVersion }()
|
2026-03-29 21:44:22 +00:00
|
|
|
|
|
|
|
|
core.Println(updateChannel())
|
|
|
|
|
// Output: prerelease
|
|
|
|
|
}
|