agent/pkg/monitor/sync_example_test.go

12 lines
221 B
Go
Raw Normal View History

// SPDX-License-Identifier: EUPL-1.2
package monitor
import core "dappco.re/go/core"
func ExampleCheckinResponse() {
resp := CheckinResponse{Timestamp: 1712345678}
core.Println(resp.Timestamp > 0)
// Output: true
}