Skip to content

Commit b5c51c2

Browse files
fix missed package aliases
1 parent f36b399 commit b5c51c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ziti/contexts.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func NewContextWithOpts(cfg *Config, options *Options) (Context, error) {
130130
apiClientConfig := &edgeApis.ApiClientConfig{
131131
ApiUrls: apiUrls,
132132
CaPool: cfg.Credentials.GetCaPool(),
133-
TotpCodeProvider: edge_apis.NewTotpCodeProviderFromChStringFunc(func(codeCh chan string) {
133+
TotpCodeProvider: edgeApis.NewTotpCodeProviderFromChStringFunc(func(codeCh chan string) {
134134
provider := rest_model.MfaProvidersZiti
135135

136136
authQuery := &rest_model.AuthQueryDetail{
@@ -174,7 +174,7 @@ func NewContextWithOpts(cfg *Config, options *Options) (Context, error) {
174174
newContext.CtrlClt.SetAllowOidcDynamicallyEnabled(true)
175175

176176
multiSubmitter := posture.NewMultiSubmitter(newContext.CtrlClt, newContext.CtrlClt, newContext)
177-
totpTokenProvider := edge_apis.NewSingularTokenRequestor(newContext, newContext.CtrlClt)
177+
totpTokenProvider := edgeApis.NewSingularTokenRequestor(newContext, newContext.CtrlClt)
178178
newContext.CtrlClt.PostureCache = posture.NewCache(newContext, multiSubmitter, totpTokenProvider, newContext.closeNotify)
179179

180180
newContext.CtrlClt.AddOnControllerUpdateListeners(func(urls []*url.URL) {

0 commit comments

Comments
 (0)