🚧 Stub Handler

This commit is contained in:
Dan Jones 2024-08-13 19:39:22 -05:00
commit f96e1ddf3b
4 changed files with 25 additions and 0 deletions

12
responder.go Normal file
View file

@ -0,0 +1,12 @@
package idiohandler
import (
"io"
"net/http"
)
type Responder interface {
ResponseBody() io.Reader
Status() int
Header() http.Header
}