mirror of
https://github.com/openziti/zrok.git
synced 2024-12-23 07:09:12 +01:00
28 lines
530 B
Go
28 lines
530 B
Go
package agent
|
|
|
|
import (
|
|
"github.com/openziti/zrok/sdk/golang/sdk"
|
|
"time"
|
|
)
|
|
|
|
type share struct {
|
|
token string
|
|
|
|
basicAuth []string
|
|
frontendSelection []string
|
|
backendMode sdk.BackendMode
|
|
insecure bool
|
|
oauthProvider string
|
|
oauthEmailAddressPatterns []string
|
|
oauthCheckInterval time.Duration
|
|
closed bool
|
|
accessGrants []string
|
|
}
|
|
|
|
type access struct {
|
|
token string
|
|
|
|
bindAddress string
|
|
responseHeaders []string
|
|
}
|