mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
11 lines
155 B
Go
11 lines
155 B
Go
package models
|
|
|
|
type (
|
|
// LoopStatus status such as stopped or running.
|
|
LoopStatus string
|
|
)
|
|
|
|
func (ls LoopStatus) String() string {
|
|
return string(ls)
|
|
}
|