config.go 152 B

12345678910
  1. package http
  2. // Config for HTTP proxy server.
  3. type Config struct {
  4. Timeout int
  5. }
  6. // ClientConfig for HTTP proxy client.
  7. type ClientConfig struct {
  8. }