agent_api/observer/const.go
jackdaw@loafle.com 904d06dffe .
2017-04-14 17:14:42 +09:00

16 lines
165 B
Go

package observer
import "strconv"
type KEY int
func (k KEY) String() string {
return strconv.Itoa(int(k))
}
const (
ADD_CRAWLER = KEY(iota)
REMOVE_CRAWLER
)