mirror of
https://github.com/openziti/zrok.git
synced 2025-02-15 09:50:00 +01:00
16 lines
245 B
Go
16 lines
245 B
Go
package tunnelBackend
|
|
|
|
import "github.com/openziti/sdk-golang/ziti/edge"
|
|
|
|
type Config struct {
|
|
IdentityPath string
|
|
EndpointAddress string
|
|
ShrToken string
|
|
}
|
|
|
|
type Backend struct {
|
|
cfg *Config
|
|
listener edge.Listener
|
|
}
|
|
|
|
func New |