gitee.com/h79/goutils@v1.22.10/rpc/config.go (about)

     1  package rpc
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  type Config struct {
     8  	Timeout time.Duration
     9  	Server  string
    10  	Service string
    11  	Title   string
    12  }
    13  
    14  type OptionFunc func(conf *Config)