File: client.go

package info (click to toggle)
golang-github-coreos-go-oidc 0.0~git20160926.0.16c5ecc-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 436 kB
  • sloc: sh: 40; makefile: 5
file content (7 lines) | stat: -rw-r--r-- 102 bytes parent folder | download
1
2
3
4
5
6
7
package http

import "net/http"

type Client interface {
	Do(*http.Request) (*http.Response, error)
}