github.com/machinefi/w3bstream@v1.6.5-rc9.0.20240426031326-b8c7c4876e72/pkg/depends/kit/httptransport/httpx/httpx_mimes.go (about)

     1  package httpx
     2  
     3  //go:generate go run internal/mimes/main.go
     4  const (
     5  	MIME_OCTET_STREAM      = "application/octet-stream"
     6  	MIME_JSON              = "application/json"
     7  	MIME_XML               = "application/xml"
     8  	MIME_FORM_URLENCODED   = "application/x-www-form-urlencoded"
     9  	MIME_MULTIPART_FORMDAT = "multipart/form-data"
    10  	MIME_PROTOBUF          = "application/x-protobuf"
    11  	MIME_MSGPACK           = "application/x-msgpack"
    12  	MIME_PLAIN_TEXT        = "text/plain"
    13  )