13 lines
142 B
Go
13 lines
142 B
Go
|
|
package idiohandler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io"
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Responder interface {
|
||
|
|
ResponseBody() io.Reader
|
||
|
|
Status() int
|
||
|
|
Header() http.Header
|
||
|
|
}
|