|
@@ -19,8 +19,6 @@ func init() {
|
|
TypeMap["PongMsg"] = t((*PongMsg)(nil))
|
|
TypeMap["PongMsg"] = t((*PongMsg)(nil))
|
|
TypeMap["VerisonMsg"] = t((*VersionMsg)(nil))
|
|
TypeMap["VerisonMsg"] = t((*VersionMsg)(nil))
|
|
TypeMap["VersionRespMsg"] = t((*VersionRespMsg)(nil))
|
|
TypeMap["VersionRespMsg"] = t((*VersionRespMsg)(nil))
|
|
- TypeMap["MetricsMsg"] = t((*MetricsMsg)(nil))
|
|
|
|
- TypeMap["MetricsRespMsg"] = t((*MetricsRespMsg)(nil))
|
|
|
|
}
|
|
}
|
|
|
|
|
|
type Message interface{}
|
|
type Message interface{}
|
|
@@ -72,10 +70,3 @@ type VersionRespMsg struct {
|
|
Version string
|
|
Version string
|
|
MmVersion string
|
|
MmVersion string
|
|
}
|
|
}
|
|
-
|
|
|
|
-type MetricsMsg struct {
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-type MetricsRespMsg struct {
|
|
|
|
- Metrics string
|
|
|
|
-}
|
|
|