12 lines
203 B
Go
12 lines
203 B
Go
package container
|
|
|
|
const (
|
|
CONTAINER_CRAWLERS = "CONTAINER_CRAWLERS"
|
|
CONTAINER_RPC_WRITE_CHAN = "CONTAINER_RPC_WRITE_CHAN"
|
|
)
|
|
|
|
type RPCNotification struct {
|
|
Method string
|
|
Params []interface{}
|
|
}
|