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