mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
16 lines
351 B
Go
16 lines
351 B
Go
//nolint:revive
|
|
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"
|
|
)
|