blob: 79a9a81d29acc441f1d052dc6e152076cfb0413c [file] [log] [blame]
Ryan Brownfed691e2014-09-15 13:09:40 -07001package main
2
3// Simple service used in the agent tests.
4type PingPong interface {
Todd Wang383e88c2014-12-18 01:52:34 -08005 Ping(message string) (string | error)
Ryan Brownfed691e2014-09-15 13:09:40 -07006}