From 18492ae499b2646e9e11ba2edaca90b43d946fd6 Mon Sep 17 00:00:00 2001 From: SteelPhase Date: Mon, 20 Aug 2018 13:53:47 -0400 Subject: [PATCH] Remove const/structs that were included in error --- service.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/service.go b/service.go index a4d5f28..ec0d785 100644 --- a/service.go +++ b/service.go @@ -83,18 +83,6 @@ const ( optionPIDFile = "PIDFile" ) -// Status represents service status as an interger value -type Status int - -// Status of service represented as an integer -const ( - StatusNotImplemented Status = iota - StatusUnknown - StatusError - StatusRunning - StatusStopped -) - // Config provides the setup for a Service. The Name field is required. type Config struct { Name string // Required name of the service. No spaces suggested.