package http type Request struct { Method string Path string Protocol string Headers []Header Body []byte } type Response struct { Protocol string StatusCode string StatusMessage string Headers []Header Body []byte } type Header struct { Name string Value string }