blob: 10f19251979f92b486c774b0dd3d2c0cb8d6ad67 [file] [log] [blame]
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
}