10 lines
109 B
Go
10 lines
109 B
Go
|
package reddit
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type Client interface {
|
||
|
Do(*http.Request) (*http.Response, error)
|
||
|
}
|