package debug | |
import ( | |
"veyron.io/veyron/veyron2/services/mgmt/logreader" | |
"veyron.io/veyron/veyron2/services/mgmt/pprof" | |
"veyron.io/veyron/veyron2/services/mgmt/stats" | |
) | |
// This interface exists only for the purpose of generating a valid Signature | |
// for all the interfaces that are served by the debug server. It should be | |
// removed when https://code.google.com/p/envyor/issues/detail?id=285 is | |
// resolved. | |
type Debug interface { | |
logreader.LogFile | |
stats.Stats | |
pprof.PProf | |
} |