Sign in
vanadium
/
release.go.x.ref
/
f15340dc00adbd366ebf2d34e17af584fad82466
/
.
/
lib
/
testutil
/
modules
/
servers.vdl
blob: f3ea3c83d05e2c648ec49cfeba9abfc9d89ea0c2 [
file
] [
log
] [
blame
]
package
modules
type
Clock
interface
{
// Time returns a string of the form "(current time) msg"
Time
(
msg
string
)
(
string
,
error
)
}
type
Echo
interface
{
// Echo simply returns its argument as its result
Echo
(
msg
string
)
(
string
,
error
)
}