9 lines
129 B
Go
9 lines
129 B
Go
package tool
|
|
|
|
type State string
|
|
|
|
const (
|
|
StateDefault State = ""
|
|
StateLocal State = "local"
|
|
StateGlobal State = "global"
|
|
)
|