mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 14:58:08 +02:00
11 lines
178 B
Go
11 lines
178 B
Go
package common
|
|
|
|
// Endpoint represents an endpoint in the communication.
|
|
type Endpoint struct {
|
|
IP string
|
|
Port uint16
|
|
Name string
|
|
Cmdline string
|
|
Proc string
|
|
}
|