github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/httpclient/structs.go (about)

     1  package httpclient
     2  
     3  import "net/http"
     4  
     5  type metaDomains map[string]metaValues
     6  type metaValues map[string]string
     7  
     8  type httpStatus struct {
     9  	Code    int
    10  	Message string
    11  }
    12  
    13  type jsonHttp struct {
    14  	Status  httpStatus
    15  	Headers http.Header
    16  	Body    string
    17  }