revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
11 lines
221 B
Go
11 lines
221 B
Go
// 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
|
|
}
|