golang-plugin/tool/state.go

10 lines
129 B
Go
Raw Normal View History

2023-07-01 11:18:12 +00:00
package tool
type State string
const (
StateDefault State = ""
StateLocal State = "local"
StateGlobal State = "global"
)