mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
18 lines
340 B
Go
18 lines
340 B
Go
package constants
|
|
|
|
const (
|
|
DefaultGrpcServerHost = ""
|
|
DefaultGrpcServerPort = "9666"
|
|
DefaultGrpcClientRemoteHost = "localhost"
|
|
DefaultGrpcClientRemotePort = DefaultGrpcServerPort
|
|
DefaultGrpcAuthKey = "Crawlab2021!"
|
|
)
|
|
|
|
const (
|
|
GrpcHeaderAuthorization = "authorization"
|
|
)
|
|
|
|
const (
|
|
GrpcSubscribeTypeNode = "node"
|
|
)
|