From 5da9afefbc4c4eca3910a53ff0876607fed0ea73 Mon Sep 17 00:00:00 2001 From: jackdaw Date: Mon, 28 Nov 2016 15:02:16 +0900 Subject: [PATCH] . --- events/event.go | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/events/event.go b/events/event.go index 42844b4..62dacbe 100644 --- a/events/event.go +++ b/events/event.go @@ -7,15 +7,19 @@ const ( const ( COLLECTOR_INSTALL = "/_api/collector/event/status/install" - DISCOVERY_START = "/_api/collector/discovery/event/status/start" - DISCOVERY_END = "/_api/collector/discovery/event/status/end" - HOST_START = "/_api/collector/discovery/event/host/status/start" - HOST_FOUND = "/_api/collector/discovery/event/host/status/found" - HOST_END = "/_api/collector/discovery/event/host/status/end" - PORT_START = "/_api/collector/discovery/event/port/status/start" - PORT_FOUND = "/_api/collector/discovery/event/port/status/found" - PORT_END = "/_api/collector/discovery/event/port/status/end" - SERVICE_END = "/_api/collector/discovery/event/service/status/end" + + DISCOVERY_START = "/_api/collector/discovery/event/status/start" + DISCOVERY_END = "/_api/collector/discovery/event/status/end" + + HOST_START = "/_api/collector/discovery/event/host/status/start" + HOST_FOUND = "/_api/collector/discovery/event/host/status/found" + HOST_END = "/_api/collector/discovery/event/host/status/end" + + PORT_START = "/_api/collector/discovery/event/port/status/start" + PORT_FOUND = "/_api/collector/discovery/event/port/status/found" + PORT_END = "/_api/collector/discovery/event/port/status/end" + + SERVICE_END = "/_api/collector/discovery/event/service/status/end" ) type URLMaker interface {