mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-30 11:22:53 +00:00
11 lines
199 B
Go
11 lines
199 B
Go
package idempotency
|
|
|
|
//go:generate msgp -o=response_msgp.go -io=false -unexported
|
|
type response struct {
|
|
StatusCode int `msg:"sc"`
|
|
|
|
Headers map[string][]string `msg:"hs"`
|
|
|
|
Body []byte `msg:"b"`
|
|
}
|