Remove completely unused structs
This commit is contained in:
parent
b20f86b4c7
commit
d25ab4440d
|
@ -91,12 +91,6 @@ type handshakeRequest struct {
|
|||
Version int32
|
||||
}
|
||||
|
||||
type eventRequest struct {
|
||||
Name string
|
||||
Payload []byte
|
||||
Coalesce bool
|
||||
}
|
||||
|
||||
type forceLeaveRequest struct {
|
||||
Node string
|
||||
}
|
||||
|
@ -149,10 +143,6 @@ type monitorRequest struct {
|
|||
LogLevel string
|
||||
}
|
||||
|
||||
type streamRequest struct {
|
||||
Type string
|
||||
}
|
||||
|
||||
type stopRequest struct {
|
||||
Stop uint64
|
||||
}
|
||||
|
@ -161,14 +151,6 @@ type logRecord struct {
|
|||
Log string
|
||||
}
|
||||
|
||||
type userEventRecord struct {
|
||||
Event string
|
||||
LTime serf.LamportTime
|
||||
Name string
|
||||
Payload []byte
|
||||
Coalesce bool
|
||||
}
|
||||
|
||||
type Member struct {
|
||||
Name string
|
||||
Addr net.IP
|
||||
|
@ -183,11 +165,6 @@ type Member struct {
|
|||
DelegateCur uint8
|
||||
}
|
||||
|
||||
type memberEventRecord struct {
|
||||
Event string
|
||||
Members []Member
|
||||
}
|
||||
|
||||
type AgentRPC struct {
|
||||
sync.Mutex
|
||||
agent *Agent
|
||||
|
|
Loading…
Reference in New Issue