Remove const/structs that were included in error

This commit is contained in:
SteelPhase
2018-08-20 13:53:47 -04:00
committed by Daniel Theophanes
parent 46447978a4
commit 18492ae499
-12
View File
@@ -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.