10 lines
339 B
Go
10 lines
339 B
Go
|
package SystemMessages
|
||
|
|
||
|
// The message to register a command/listener to ICCC.
|
||
|
type ICCCRegisterListener struct {
|
||
|
Channel string // The channel for the provided command
|
||
|
Command string // The provided command
|
||
|
IsActive bool // Is the command active?
|
||
|
IPAddressPort string // The IP address and port for the end-point
|
||
|
}
|