Browse Source

remove unused metric message types

Alan Shreve 12 years ago
parent
commit
9f8d36a6a3
1 changed files with 0 additions and 9 deletions
  1. 0 9
      src/ngrok/msg/msg.go

+ 0 - 9
src/ngrok/msg/msg.go

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