blob: f3ea3c83d05e2c648ec49cfeba9abfc9d89ea0c2 [file] [log] [blame]
Cosmos Nicolaou59117c12014-06-06 17:06:47 -07001package modules
2
3type Clock interface {
4 // Time returns a string of the form "(current time) msg"
5 Time(msg string) (string, error)
6}
7
8type Echo interface {
9 // Echo simply returns its argument as its result
10 Echo(msg string) (string, error)
11}