mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 00:23:48 +01:00
21 lines
305 B
Go
21 lines
305 B
Go
package agent
|
|
|
|
import (
|
|
"github.com/openziti/zrok/agent/agentGrpc"
|
|
"github.com/openziti/zrok/agent/proctree"
|
|
)
|
|
|
|
type access struct {
|
|
token string
|
|
|
|
bindAddress string
|
|
responseHeaders []string
|
|
|
|
process *proctree.Child
|
|
}
|
|
|
|
type agentGrpcImpl struct {
|
|
agentGrpc.UnimplementedAgentServer
|
|
a *Agent
|
|
}
|