container-go/constants.go

12 lines
203 B
Go
Raw Normal View History

2018-04-19 06:24:45 +00:00
package container
const (
2018-04-19 14:07:28 +00:00
CONTAINER_CRAWLERS = "CONTAINER_CRAWLERS"
CONTAINER_RPC_WRITE_CHAN = "CONTAINER_RPC_WRITE_CHAN"
2018-04-19 06:24:45 +00:00
)
2018-04-19 14:07:14 +00:00
type RPCNotification struct {
Method string
Params []interface{}
}