2021-06-20 16:12:39 +00:00
|
|
|
//nolint:revive
|
2020-12-19 20:10:34 -05:00
|
|
|
package constants
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/qdm12/gluetun/internal/models"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
Starting models.LoopStatus = "starting"
|
|
|
|
|
Running models.LoopStatus = "running"
|
|
|
|
|
Stopping models.LoopStatus = "stopping"
|
|
|
|
|
Stopped models.LoopStatus = "stopped"
|
|
|
|
|
Crashed models.LoopStatus = "crashed"
|
|
|
|
|
Completed models.LoopStatus = "completed"
|
|
|
|
|
)
|