Documentation ¶ Index ¶ func Convert() type Entries type Entry type Har type HarLog type Request type Response Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Convert ¶ func Convert() Types ¶ type Entries ¶ type Entries []Entry type Entry ¶ type Entry struct { Request Request Response Response // contains filtered or unexported fields } type Har ¶ type Har map[string]HarLog har type type HarLog ¶ type HarLog struct { Version string Creator map[string]string Pages []map[string]interface{} Entries []Entry } type Request ¶ type Request struct { Method string Url string HttpVersion string Headers []map[string]interface{} QueryString []map[string]interface{} Cookies []map[string]interface{} HeadersSize int BodySize int PostData map[string]interface{} } type Response ¶ type Response struct { Status int StatusText string HttpVersion string Headers map[string]interface{} Cookies []map[string]interface{} // contains filtered or unexported fields } Source Files ¶ View all Source files har.go types.go Click to show internal directories. Click to hide internal directories.