...

Source file src/golang.conradwood.net/go-easyops/authremote/standalone.go

Documentation: golang.conradwood.net/go-easyops/authremote

     1  package authremote
     2  
     3  import (
     4  	"context"
     5  	ge "golang.conradwood.net/apis/goeasyops"
     6  	"time"
     7  )
     8  
     9  // TODO: add tags, timeout, etc. this is only used on "standalone" (thus not network environments)
    10  func standalone_ContextWithTimeoutAndTags(t time.Duration, rt *ge.CTXRoutingTags) context.Context {
    11  	return context.TODO()
    12  }
    13  

View as plain text