agent_api/observer/const.go

16 lines
165 B
Go
Raw Normal View History

2017-04-14 08:14:42 +00:00
package observer
import "strconv"
type KEY int
func (k KEY) String() string {
return strconv.Itoa(int(k))
}
const (
ADD_CRAWLER = KEY(iota)
REMOVE_CRAWLER
)