Piotr Biernat
7bb7417f3a
All checks were successful
continuous-integration/drone/push Build is passing
38 lines
994 B
Go
38 lines
994 B
Go
// ___ ____ ___ ___
|
|
// \ \ / / | _ | __| \ \ / / || | __ || || _ |
|
|
// \ \/ / |___ | |__ \ \/ / || |___ || ||___|
|
|
// \ / | _ | _ | \ / || __ | || ||\\
|
|
// \/ |___ |___ | \/ || ____| || || \\
|
|
//
|
|
// Copyright (c) 2021 Piotr Biernat. https://pbiernat.dev. MIT License
|
|
// Repo: https://git.pbiernat.dev/golang/vegvisir
|
|
|
|
package cache
|
|
|
|
import "github.com/valyala/fasthttp"
|
|
|
|
// Headers type
|
|
type Headers map[string]string
|
|
|
|
// ResponseCache struct
|
|
type ResponseCache struct {
|
|
URL string
|
|
Method string
|
|
Body string
|
|
Code int
|
|
Headers *fasthttp.ResponseHeader
|
|
}
|
|
|
|
// NewResponseCache Creates new ResponseCache structure
|
|
func NewResponseCache(url, method, body string, code int, headers *fasthttp.ResponseHeader) *ResponseCache {
|
|
return &ResponseCache{url, method, body, code, headers}
|
|
}
|
|
|
|
//func (r *ResponseCache) StatusCode() int {
|
|
// return r.Code
|
|
//}
|
|
//
|
|
//func (r *ResponseCache) Body() []byte {
|
|
// return r.Body
|
|
//}
|