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