mirror of
https://github.com/openziti/zrok.git
synced 2025-02-10 07:20:16 +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
|
||
|
}
|