github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/proto/proxy/messages.go (about)

     1  package proxy
     2  
     3  import "time"
     4  
     5  type ConnectRequest struct {
     6  	Address string
     7  	Network string
     8  	Timeout time.Duration
     9  }
    10  
    11  type ConnectResponse struct {
    12  	Error string
    13  }