mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 13:56:50 -06: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)
|
|
}
|