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)
}